/* Premium CSS with animations, parallax, and mobile-first design */

/* CSS Variables */
:root {
    --primary: #0e4426;
    --primary-light: #678c2d;
    --gradient: linear-gradient(135deg, #0e4426, #678c2d);
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8faf7;
    --white: #ffffff;
    --border: #e5e5e5;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Netlify Form */
.hidden {
    display: none !important;
}

/* Thank You Page */
.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 60px;
    text-align: center;
    background-color: var(--bg-light);
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.thank-you-content .lead {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.thank-you-content p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.thank-you-actions {
    margin-top: 2rem;
}

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

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

/* Selection styling */
::selection {
    background: var(--primary);
    color: white;
}

::-moz-selection {
    background: var(--primary);
    color: white;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.white-text {
    color: white;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    z-index: 1002;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    width: 100%;
    transform: translateY(0) !important;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.brand-name {
    display: flex;
    flex-direction: column;
}

.brand-main {
    font-weight: 800;
    font-size: 1.2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-sub {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    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(--gradient);
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: var(--gradient);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(103, 140, 45, 0.3);
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border: none;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(14, 68, 38, 0.2);
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-toggle:hover {
    box-shadow: 0 6px 16px rgba(14, 68, 38, 0.3);
    transform: translateY(-2px);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    position: relative;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    position: relative;
    transform-origin: center;
}

/* X transformation */
.mobile-toggle.active .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-toggle.active .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px; /* Add space for fixed header */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1 !important; /* Force full visibility */
}

.hero-inner {
    max-width: 800px;
    text-align: center;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.title-line {
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(14, 68, 38, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

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

/* Button arrow animation */
.btn-arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 6px 20px rgba(14, 68, 38, 0.2);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 1;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary > * {
    position: relative;
    z-index: 2;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(14, 68, 38, 0.3);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

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

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.stat {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding: 5px;
}

.wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* Sections */
.section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
    scroll-margin-top: 80px; /* For smooth scrolling with fixed header */
}

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

.section-tag {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services */
.services {
    background: var(--bg-light);
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

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

.service-card:hover::before {
    transform: translateX(0);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon {
    margin-bottom: 1.5rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-hex {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}

.service-card h3 {
    margin-bottom: 1rem;
}

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

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    color: var(--primary-light);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Portfolio */
.portfolio {
    background: white;
    padding: 6rem 0;
}

.gallery-container {
    position: relative;
    width: 100%;
    padding-bottom: 4rem;
}

.gallery-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-scroll-indicator {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 1.25rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(14, 68, 38, 0.25);
    font-size: 1rem;
    font-weight: 600;
    color: white;
    animation: float-bounce 3s ease-in-out infinite;
    pointer-events: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.gallery-scroll-indicator::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    filter: blur(10px);
    opacity: 0.5;
    z-index: -1;
}

.scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulse-arrow 2s ease-in-out infinite;
}

.scroll-arrow svg {
    width: 20px;
    height: 20px;
}

@keyframes pulse-arrow {
    0%, 100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateX(5px);
        opacity: 0.7;
    }
}

@keyframes float-bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0px) scale(1);
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    }
    25% {
        transform: translateX(-50%) translateY(-8px) scale(1.02);
        box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    }
    50% {
        transform: translateX(-50%) translateY(-4px) scale(1.01);
        box-shadow: 0 10px 35px rgba(0,0,0,0.13);
    }
    75% {
        transform: translateX(-50%) translateY(-10px) scale(1.03);
        box-shadow: 0 15px 45px rgba(0,0,0,0.18);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    flex: 0 0 320px;
    display: block;
}

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

.gallery-image {
    position: relative;
    overflow: hidden;
    width: 320px;
    aspect-ratio: 4/3;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay h4 {
    margin-bottom: 0.5rem;
}

.gallery-zoom {
    background: white;
    color: var(--primary);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

/* Process Timeline */
.process {
    background: var(--bg-light);
    position: relative;
    z-index: 1;
    padding: 5rem 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    padding: 2rem 0;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: calc(50% + 3rem);
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + 3rem);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 2rem;
    transform: translateX(-50%);
    width: 3rem;
    height: 3rem;
    background: white;
    border: 4px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary);
    z-index: 1;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Testimonials */
.testimonials {
    background: white;
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 5rem 0;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-card {
    min-width: 100%;
    padding: 2.5rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.testimonial-card.active {
    opacity: 1;
}

.stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

.testimonial-card blockquote {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    padding: 0 1rem;
}

.testimonial-card blockquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
}

.testimonial-card strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--primary);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.nav-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* About Section */
.about {
    background: white;
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.about-content .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.about-content .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-content .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

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

.feature-icon svg {
    color: white;
}

.feature-item div:last-child {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-item strong {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.feature-item span {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.3;
}

.about-commitment {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

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

.image-caption {
    margin-top: 1rem;
    background: var(--bg-light);
    color: var(--text-light);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.image-caption span {
    font-size: 0.9rem;
    line-height: 1.5;
    font-style: italic;
}

/* Service Areas */
.areas {
    background: var(--bg-light);
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

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

.area-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.area-card.primary {
    background: var(--gradient);
    color: white;
}

.area-card h3 {
    margin-bottom: 1rem;
}

.area-card ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.area-card li {
    padding: 0.25rem 0;
}

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

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
}

.btn-white {
    background: var(--gradient);
    color: white;
    box-shadow: 0 6px 20px rgba(14, 68, 38, 0.2);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-white::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 1;
}

.btn-white:hover::before {
    width: 300px;
    height: 300px;
}

.btn-white > * {
    position: relative;
    z-index: 2;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(14, 68, 38, 0.3);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
}

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

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    color: white;
    flex-shrink: 0;
}

.method-icon svg {
    color: white;
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.trust-logo {
    width: 60px;
    height: 60px;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

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

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

.btn-block {
    width: 100%;
    background: var(--gradient);
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(14, 68, 38, 0.2);
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 1rem;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

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

.footer-brand p {
    opacity: 0.8;
    margin-top: 1rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: block;
}

.footer h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.footer nav a:hover {
    color: white;
    transform: translateX(5px);
}

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

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    min-width: 160px;
    justify-content: center;
}

.social-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-cta p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.8;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius);
}

.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    font-size: 1.125rem;
}

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

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

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(6px);
        opacity: 0;
    }
}

/* AOS-like animations */
/* Removed problematic AOS fade rules */

/* Removed all problematic AOS animation rules */

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Container adjustments */
    .container {
        padding: 0 20px;
    }
    
    /* Header */
    .header {
        background: white !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1200;
    }
    
    .nav-container {
        padding: 1rem 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }
    
    .logo-link {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .logo {
        width: 54px;
        height: 54px;
    }
    
    .brand-name {
        display: flex;
        flex-direction: column;
    }
    
    .brand-main {
        font-size: 1.1rem;
        line-height: 1.2;
    }
    
    .brand-sub {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .nav-wrapper {
        margin-left: auto;
    }
    
    .mobile-toggle {
        display: flex;
        position: relative;
        z-index: 1201;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
    }
    
    /* Mobile Navigation Menu */
    .main-nav {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(255,255,255,0.98);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0.75rem;
        z-index: 1100;
        padding: 3rem 1.5rem 2.5rem;
        text-align: center;
        overflow-y: auto;
        width: 100vw;
        height: calc(100vh - 80px);
        left: 0;
        right: 0;
        top: 80px; /* Space for fixed header */
        bottom: 0;
    }
    
    .main-nav.active {
        display: flex !important;
    }
    
    .main-nav .nav-link {
        width: 85%;
        max-width: 280px;
        background: white;
        border-radius: 18px;
        padding: 0.9rem 1rem;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-dark);
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        margin: 0.15rem 0;
    }
    
    .main-nav .nav-link:active {
        transform: translateY(1px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        background: rgba(255, 255, 255, 0.95);
    }
    
    .main-nav .nav-link::after {
        display: none;
    }
    
    .main-nav .nav-cta {
        background: var(--gradient);
        color: white;
        padding: 1.1rem 2rem;
        margin-top: 0.5rem;
        box-shadow: 0 15px 30px rgba(14, 68, 38, 0.25);
        width: 85%;
        max-width: 280px;
        text-align: center;
    }
    
    .main-nav .nav-cta:active {
        opacity: 0.92;
        transform: translateY(1px);
        box-shadow: 0 8px 20px rgba(14, 68, 38, 0.25);
    }
    
    /* Hero adjustments */
    .hero-content {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-inner {
        padding: 0 16px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        margin-top: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Scroll indicator mobile */
    .scroll-indicator {
        bottom: 1rem;
    }
    
    .mouse {
        width: 22px;
        height: 36px;
    }
    
    /* Timeline mobile */
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    /* Sections mobile */
    .section {
        padding: 3rem 0;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Gallery scroll */
    .gallery-item {
        flex: 0 0 280px;
    }
    
    .gallery-image {
        width: 280px;
        aspect-ratio: 4/3;
    }
    
    .gallery-scroll {
        padding: 1rem 0 1rem 16px;
    }
    
    .gallery-scroll-indicator {
        font-size: 0.9rem;
        padding: 1rem 1.5rem;
        bottom: -2.5rem;
        gap: 0.75rem;
    }
    
    .scroll-arrow {
        width: 28px;
        height: 28px;
    }
    
    .scroll-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    /* Process timeline mobile */
    .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
        padding: 1rem;
    }
    
    /* Testimonials mobile */
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-card blockquote {
        font-size: 1.1rem;
    }
    
    /* Contact mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-methods {
        gap: 1rem;
    }
    
    .contact-method {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    
    /* Form adjustments */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer nav {
        align-items: center;
    }
    
    .social-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .social-link {
        min-width: 140px;
        padding: 0.5rem 0.75rem;
    }
    
    .social-link span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Stats */
    .stat-number {
        font-size: 2rem;
    }
    
    /* Service grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    /* About mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-content .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .about-content .section-title {
        font-size: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .feature-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 1rem;
    }
    
    /* Areas mobile */
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .area-card {
        text-align: center;
        padding: 1.5rem;
    }
    
    .area-card ul {
        grid-template-columns: 1fr;
        text-align: left;
        max-width: 200px;
        margin: 0 auto;
    }
    
    /* CTA Section mobile */
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --primary: #0a3319;
        --text-dark: #000;
        --text-light: #333;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
