/* ============================================
   CSS Variables - Brand Colors
   ============================================ */
:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c2a;
    --light-green: #6b9f4a;
    --brown: #8b5a3c;
    --dark-brown: #5a3a2a;
    --orange: #ff6b35;
    --white: #ffffff;
    --off-white: #f8f8f8;
    --light-gray: #e8e8e8;
    --dark-gray: #333333;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

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

.nav-link {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   Hero Section - Modern Split Design
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow-x: hidden;
    overflow-y: visible;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 0;
    background-image: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.65) 100%);
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    color: var(--dark-gray);
}

.hero-left .hero-tagline {
    background: linear-gradient(135deg, var(--orange), #ff8c5a);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.hero-left .hero-description {
    color: var(--dark-gray);
}

.hero-left .title-main {
    color: var(--dark-gray) !important;
}

.hero-left .title-sub {
    color: var(--text-dark) !important;
}

.hero-left .title-highlight {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-left .feature-content strong {
    color: var(--dark-gray) !important;
}

.hero-left .feature-content span {
    color: var(--text-dark) !important;
}

.hero-left .proof-item strong {
    color: var(--orange) !important;
}

.hero-left .proof-item span {
    color: var(--text-dark) !important;
}

.hero-left {
    animation: slideInLeft 0.8s ease-out;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--orange), #ff8c5a);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: fadeInDown 0.6s ease-out 0.2s both;
}

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

.tagline-dot {
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-family: var(--font-primary);
    line-height: 1.1;
    margin: 0;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

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

.title-highlight {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.hero-left .title-highlight {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-gray);
    letter-spacing: -2px;
}

.title-sub {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 0.5rem;
    font-family: var(--font-secondary);
}

.hero-description {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    margin-bottom: 1.75rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
    margin-bottom: 2rem;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--light-green), var(--secondary-green));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.feature-content strong {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1.2;
}

.feature-content span {
    font-size: 0.75rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.hero-cta-section {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    margin-bottom: 2rem;
    align-items: stretch;
}

.cta-primary {
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.75rem;
    background: linear-gradient(135deg, var(--orange) 0%, #ff8c5a 100%);
    color: var(--white);
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    flex: 1;
    justify-content: center;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.45);
}

.cta-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
    gap: 0.75rem;
}

.cta-arrow {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.cta-arrow svg {
    width: 18px;
    height: 18px;
}

.cta-primary:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-sub {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 0.375rem;
    position: relative;
    z-index: 1;
}

.cta-secondary {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: 3px solid var(--primary-green);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.2);
    flex: 1;
}

.cta-secondary:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.25);
}

.cta-secondary:hover .cta-phone-icon,
.cta-secondary:hover .cta-phone-content {
    color: var(--white);
}

.cta-phone-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cta-secondary:hover .cta-phone-icon {
    background: var(--white);
    color: var(--primary-green);
}

.cta-phone-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.cta-phone-label {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.7;
}

.cta-phone-number {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 800;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.8s ease-out 0.7s both;
    margin-top: 0;
}

.proof-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
}

.proof-item strong {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--orange);
}

.proof-item span {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-left .proof-item span {
    color: rgba(255, 255, 255, 0.9);
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--light-gray);
}

/* Right Visual Side */
.hero-right {
    position: relative;
    animation: slideInRight 0.8s ease-out 0.2s both;
}

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

.hero-visual {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.visual-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    width: 220px;
    animation: cardEntrance 0.8s ease-out forwards, floatCard 6s ease-in-out infinite;
    z-index: 1;
}

.visual-card:hover {
    transform: translateY(-12px) scale(1.05) rotate(1deg);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.18);
    z-index: 10;
}

@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(0.5deg);
    }
    50% {
        transform: translateY(-15px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-0.5deg);
    }
}

@keyframes floatCardCenter {
    0%, 100% {
        transform: translateX(-50%) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(-50%) translateY(-10px) rotate(-0.5deg);
    }
    50% {
        transform: translateX(-50%) translateY(-15px) rotate(0deg);
    }
    75% {
        transform: translateX(-50%) translateY(-10px) rotate(0.5deg);
    }
}

@keyframes floatCardRight {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(0.5deg);
    }
    50% {
        transform: translateY(-12px) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) rotate(-0.5deg);
    }
}

.card-1 {
    top: 30px;
    left: 30px;
    animation: cardEntrance 0.8s ease-out 0.3s forwards, floatCard 6s ease-in-out 2s infinite;
    border-left: 4px solid var(--orange);
    z-index: 2;
}

.card-1:hover {
    transform: translateY(-12px) scale(1.05) rotate(1deg);
    z-index: 15;
}

.card-2 {
    top: 10%;
    right: -10px;
    transform: translateY(0);
    animation: cardEntrance 0.8s ease-out 0.6s forwards, floatCardRight 5.5s ease-in-out 2.5s infinite;
    border-left: 4px solid var(--secondary-green);
    z-index: 3;
}

.card-2:hover {
    transform: translateY(-12px) scale(1.05) rotate(-1deg);
    z-index: 15;
}

.card-3 {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: cardEntrance 0.8s ease-out 0.9s forwards, floatCardCenter 7s ease-in-out 3s infinite;
    border-left: 4px solid var(--light-green);
    z-index: 1;
}

.card-3:hover {
    transform: translateX(-50%) translateY(-12px) scale(1.05) rotate(1deg);
    z-index: 15;
}

/* Mobile card transitions */
@media (max-width: 768px) {
    .visual-card {
        animation: cardEntrance 0.8s ease-out forwards;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .card-1,
    .card-2,
    .card-3 {
        animation: cardEntrance 0.8s ease-out forwards;
    }
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--light-green), var(--secondary-green));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(107, 159, 74, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(107, 159, 74, 0.4);
    }
}

.visual-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    animation: none;
    box-shadow: 0 8px 24px rgba(107, 159, 74, 0.5);
}

.card-icon svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.visual-card:hover .card-icon svg {
    transform: scale(1.1);
}

.visual-card h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.375rem;
    transition: color 0.3s ease;
}

.visual-card:hover h3 {
    color: var(--primary-green);
}

.visual-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.visual-card:hover p {
    color: var(--text-dark);
}

.visual-badge {
    position: absolute;
    top: 20px;
    right: -15px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: linear-gradient(135deg, var(--orange), #ff8c5a);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.35);
    z-index: 5;
    opacity: 0;
    animation: badgeEntrance 0.6s ease-out 1.2s forwards, pulseBadge 2s ease-in-out 2s infinite;
}

@keyframes badgeEntrance {
    0% {
        opacity: 0;
        transform: scale(0.8) translateX(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

@keyframes pulseBadge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 16px rgba(255, 107, 53, 0.35);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 6px 24px rgba(255, 107, 53, 0.5);
    }
}

.visual-card:hover .visual-badge {
    animation: pulseBadge 1.5s ease-in-out infinite;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
}

.visual-dots {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem;
}

.visual-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.visual-dot.active {
    background: var(--orange);
    width: 30px;
    border-radius: 6px;
    border-color: var(--orange);
}

/* Background Elements */
.hero-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    animation: bgFloat 20s ease-in-out infinite;
}

.bg-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-green);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.bg-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--orange);
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.bg-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--light-green);
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes bgFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
    animation: bounce 2s ease-in-out infinite;
}

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

.scroll-indicator svg {
    color: var(--primary-green);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(20px);
    }
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: 6rem 2rem;
    background: var(--off-white);
}

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

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-slider {
    position: relative;
    margin: 2rem 0;
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    overflow: hidden;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--light-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.slider-btn {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    color: var(--primary-green);
}

.slider-btn:hover,
.slider-btn:focus {
    background: var(--primary-green);
    color: var(--white);
}

.slider-btn-prev {
    left: -25px;
}

.slider-btn-next {
    right: -25px;
}

.services-dots {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.services-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.services-dot.active {
    background: var(--orange);
    width: 30px;
    border-radius: 6px;
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 6rem 2rem;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    padding: 1.5rem;
    background: var(--off-white);
    border-radius: 10px;
    border-left: 4px solid var(--orange);
}

.feature-item strong {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--primary-green);
    display: block;
    margin-bottom: 0.5rem;
}

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

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--off-white) 0%, #ffffff 100%);
    color: var(--text-dark);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--light-gray), transparent);
}

.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.contact .section-title {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.contact .section-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

/* Contact Info Cards */
.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--light-gray);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--orange), var(--secondary-green));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-green);
}

.contact-card:hover::before {
    transform: scaleY(1);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--orange), #ff8c5a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.contact-card-content {
    flex: 1;
}

.contact-card-content h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.contact-card-content p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-card-content a {
    color: var(--primary-green);
    font-weight: 600;
    transition: var(--transition);
}

.contact-card-content a:hover,
.contact-card-content a:focus {
    color: var(--orange);
    text-decoration: none;
}

.contact-card-subtitle {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
    font-weight: 400;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-gray);
}

.contact-form-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--off-white);
}

.contact-form-header h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

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

.form-group label {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.form-group label .required {
    color: var(--orange);
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    background: var(--white);
    color: var(--text-dark);
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-green);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(74, 124, 42, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%232d5016' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--white);
    color: var(--text-dark);
    padding: 0.5rem;
}

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

.contact-form .btn-primary {
    margin-top: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--orange), #ff8c5a);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff5a1a, var(--orange));
}

.contact-form .btn-primary:active {
    transform: translateY(0);
}

.contact-form .btn-primary svg {
    transition: transform 0.3s ease;
}

.contact-form .btn-primary:hover svg {
    transform: translateX(3px);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-section h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--orange);
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section a:hover,
.footer-section a:focus {
    color: var(--orange);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-links a:hover,
.social-links a:focus {
    background: var(--orange);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Mobile Responsive Styles
   ============================================ */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .nav-logo img {
        height: 50px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: var(--transition);
        gap: 1rem;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .hero {
        min-height: auto;
        padding: 7.5rem 0 2.5rem;
        overflow-x: hidden;
        overflow-y: visible;
        width: 100%;
        margin-top: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 6rem 0 3rem;
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
    
    .hero-left {
        width: 100%;
        max-width: 100%;
        padding: 0 1.25rem;
        box-sizing: border-box;
    }
    
    .hero-right {
        display: none;
    }
    
    .hero-content {
        gap: 0;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        padding-top: 0;
    }
    
    .hero-tagline {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        align-self: flex-start;
        margin-bottom: 0.5rem;
    }
    
    .hero-title {
        margin-top: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .title-highlight,
    .title-main {
        font-size: 1.75rem;
        letter-spacing: -0.5px;
        line-height: 1.1;
        display: block;
    }
    
    .hero-left .title-highlight {
        background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-left .title-main {
        color: var(--dark-gray) !important;
    }
    
    .title-sub {
        font-size: 0.9rem;
        margin-top: 0.25rem;
        display: block;
    }
    
    .hero-left .title-sub {
        color: var(--text-dark) !important;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    .hero-left .hero-description {
        color: var(--text-dark) !important;
    }
    
    .hero-features {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .feature-box {
        padding: 1rem;
        border-radius: 12px;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        border-radius: 10px;
        flex-shrink: 0;
    }
    
    .feature-content {
        flex: 1;
    }
    
    .feature-content strong {
        font-size: 0.95rem;
        display: block;
        margin-bottom: 0.25rem;
    }
    
    .feature-content span {
        font-size: 0.8rem;
        display: block;
    }
    
    .hero-cta-section {
        flex-direction: column;
        gap: 0.875rem;
        margin-bottom: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .cta-primary {
        padding: 1.5rem 1.75rem;
        border-radius: 16px;
        min-height: 70px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
        text-align: left;
        box-sizing: border-box;
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
        border: 2px solid rgba(255, 255, 255, 0.2);
    }
    
    .cta-main {
        font-size: 1.25rem;
        font-weight: 800;
        width: 100%;
        justify-content: space-between;
        display: flex;
        align-items: center;
        margin-bottom: 0.25rem;
    }
    
    .cta-text {
        flex: 1;
    }
    
    .cta-arrow {
        flex-shrink: 0;
        margin-left: 0.5rem;
    }
    
    .cta-sub {
        font-size: 0.75rem;
        text-align: left;
        opacity: 0.95;
        margin-top: 0;
    }
    
    .cta-secondary {
        padding: 1.25rem 1.75rem;
        border-radius: 16px;
        min-height: 70px;
        width: 100%;
        max-width: 100%;
        display: flex;
        align-items: center;
        gap: 1rem;
        box-sizing: border-box;
        border: 3px solid var(--primary-green);
        box-shadow: 0 6px 20px rgba(45, 80, 22, 0.2);
    }
    
    .cta-phone-icon {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        flex-shrink: 0;
    }
    
    .cta-phone-content {
        flex: 1;
    }
    
    .cta-phone-number {
        font-size: 1.05rem;
        display: block;
        margin-top: 0.25rem;
    }
    
    .cta-phone-label {
        font-size: 0.8rem;
        display: block;
    }
    
    .hero-social-proof {
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 1.25rem 1rem;
        border-radius: 12px;
        justify-content: space-between;
        margin-top: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .proof-item {
        flex: 1;
        min-width: calc(33.333% - 0.5rem);
        text-align: center;
    }
    
    .proof-item strong {
        font-size: 1.15rem;
        display: block;
        margin-bottom: 0.25rem;
    }
    
    .proof-item span {
        font-size: 0.65rem;
        line-height: 1.3;
        display: block;
    }
    
    .proof-divider {
        display: none;
    }
    
    .bg-shape {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Mobile Services Slider */
    .services-wrapper {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 1.5rem;
        padding: 1rem 0;
        scrollbar-width: none;
    }
    
    .services-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .service-card {
        min-width: 85%;
        max-width: 85%;
        scroll-snap-align: center;
        flex-shrink: 0;
    }
    
    .slider-btn {
        display: flex;
        width: 40px;
        height: 40px;
    }
    
    .slider-btn-prev {
        left: 10px;
    }
    
    .slider-btn-next {
        right: 10px;
    }
    
    .services-dots {
        display: flex;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-header {
        margin-bottom: 3rem;
    }
    
    .contact .section-subtitle {
        font-size: 1rem;
    }
    
    .contact-info {
        gap: 1.25rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-card-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .contact-form-header h3 {
        font-size: 1.3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form {
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero {
        background-attachment: scroll;
        background-position: center;
    }
    
    .hero-image-overlay {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.7) 100%);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 7rem 0 2rem;
        overflow-x: hidden;
        overflow-y: visible;
        width: 100%;
        margin-top: 0;
    }
    
    .hero-container {
        padding: 5rem 0 2rem;
        gap: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .hero-left {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-cta-section {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-social-proof {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-content {
        gap: 0;
    }
    
    .hero-tagline {
        font-size: 0.75rem;
        padding: 0.45rem 0.875rem;
    }
    
    .tagline-dot {
        width: 5px;
        height: 5px;
    }
    
    .title-highlight,
    .title-main {
        font-size: 1.65rem;
        letter-spacing: -0.5px;
    }
    
    .hero-left .title-highlight {
        background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-left .title-main {
        color: var(--dark-gray) !important;
    }
    
    .title-sub {
        font-size: 0.875rem;
        margin-top: 0.25rem;
    }
    
    .hero-left .title-sub {
        color: var(--text-dark) !important;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }
    
    .hero-left .hero-description {
        color: var(--text-dark) !important;
    }
    
    .hero-features {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .feature-box {
        padding: 0.875rem;
        border-radius: 10px;
    }
    
    .feature-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }
    
    .feature-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .feature-content strong {
        font-size: 0.9rem;
    }
    
    .feature-content span {
        font-size: 0.75rem;
    }
    
    .hero-cta-section {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .cta-primary {
        padding: 1.25rem 1.5rem;
        min-height: 65px;
        border-radius: 14px;
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    }
    
    .cta-main {
        font-size: 1.15rem;
        font-weight: 800;
    }
    
    .cta-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .cta-sub {
        font-size: 0.75rem;
        margin-top: 0.375rem;
    }
    
    .cta-secondary {
        padding: 1.15rem 1.5rem;
        min-height: 65px;
        border-radius: 14px;
        border: 3px solid var(--primary-green);
        box-shadow: 0 6px 20px rgba(45, 80, 22, 0.2);
    }
    
    .cta-phone-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }
    
    .cta-phone-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .cta-phone-number {
        font-size: 1rem;
    }
    
    .cta-phone-label {
        font-size: 0.75rem;
    }
    
    .hero-social-proof {
        padding: 1rem 0.875rem;
        gap: 0.5rem;
        border-radius: 10px;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .proof-item {
        flex: 1;
        min-width: 0;
        padding: 0;
        border-bottom: none;
        text-align: center;
    }
    
    .proof-item strong {
        font-size: 1rem;
        display: block;
        margin-bottom: 0.25rem;
    }
    
    .proof-item span {
        font-size: 0.65rem;
        display: block;
        line-height: 1.2;
    }
    
    .cta-primary {
        flex-direction: column;
    }
    
    .cta-sub {
        text-align: left;
        margin-top: 0;
    }
    
    .cta-phone-content {
        flex: 1;
    }
    
    .cta-phone-number {
        display: block;
        margin-top: 0.25rem;
    }
    
    .cta-phone-label {
        display: block;
    }
    
    .feature-content strong {
        display: block;
        margin-bottom: 0.25rem;
    }
    
    .feature-content span {
        display: block;
    }
    
    .service-card {
        min-width: 90%;
        max-width: 90%;
        padding: 2rem 1.5rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
}

/* Tablet Portrait (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .title-highlight,
    .title-main {
        font-size: 3.5rem;
    }
    
    .hero-visual {
        height: 520px;
    }
    
    .visual-card {
        width: 210px;
    }
    
    .card-1 {
        left: 5%;
    }
    
    .card-2 {
        right: 5%;
    }
    
    .card-3 {
        left: 50%;
    }
}

/* ============================================
   Accessibility Improvements
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero {
        background-attachment: scroll;
    }
}

:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 2px;
}

/* Skip to main content link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-green);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

