/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Accessibility: Skip to content */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: #308003;
    color: white;
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    text-decoration: none;
    z-index: 10001;
    transition: top 0.2s ease;
}

.skip-to-content:focus {
    top: 0;
}

/* Accessibility: Focus outlines */
*:focus-visible {
    outline: 3px solid #4CAF50;
    outline-offset: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #308003, #4CAF50);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
}

.company-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-section {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #f0f8f0;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.separator {
    color: white;
    font-size: 1.2rem;
    opacity: 0.7;
}

.cta-button {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.cta-button:hover {
    background: white;
    color: #308003;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.3);
}

.flag-link {
    margin-left: 15px;
}

.flag-icon {
    width: 30px;
    height: 20px;
    border-radius: 3px;
    transition: transform 0.3s ease;
}

.flag-icon:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/office-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-button {
    background: linear-gradient(135deg, #308003, #4CAF50);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 8px 30px rgba(48, 128, 3, 0.3);
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(48, 128, 3, 0.4);
    background: linear-gradient(135deg, #2a7003, #45a049);
}

/* Exclusive Section */
.exclusive-section {
    padding: 100px 0;
    background: #f5f5f5;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #999;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.exclusive-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.exclusive-card {
    background: linear-gradient(135deg, #f8fffe, #f0f8f0);
    border: 1px solid rgba(48, 128, 3, 0.15);
    border-radius: 15px;
    padding: 40px 35px;
    transition: all 0.3s ease;
}

.exclusive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(48, 128, 3, 0.1);
}

.exclusive-card-icon {
    margin-bottom: 20px;
}

.exclusive-card p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

.exclusive-services {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.exclusive-services-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.exclusive-services-subtitle {
    font-size: 1.2rem;
    color: #308003;
    font-weight: 600;
    margin-bottom: 30px;
}

.exclusive-services-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 35px;
}

.exclusive-list {
    list-style: none;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.exclusive-list li {
    position: relative;
    padding: 16px 0 16px 35px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.exclusive-list li:last-child {
    border-bottom: none;
}

.exclusive-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 10px;
    height: 10px;
    background: #308003;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .exclusive-highlights {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }

    .exclusive-card {
        padding: 30px 25px;
    }

    .exclusive-services-title {
        font-size: 1.7rem;
    }

    .exclusive-list li {
        font-size: 1rem;
    }
}

/* Process Section - Sticky Scroll Timeline */
.process-wrapper {
    height: 350vh;
    position: relative;
}

.process-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #2d4a2d;
    will-change: transform;
}

.process-bg {
    position: absolute;
    top: 0;
    left: -60%;
    width: 220%;
    height: 100%;
    background:
        radial-gradient(ellipse 600px 400px at 25% 45%, rgba(76, 175, 80, 0.35), transparent),
        radial-gradient(ellipse 400px 350px at 38% 65%, rgba(48, 128, 3, 0.3), transparent),
        radial-gradient(ellipse 500px 300px at 48% 30%, rgba(100, 200, 100, 0.2), transparent);
    opacity: 1;
    z-index: 0;
    will-change: transform;
}

.process-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 80px 30px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.process-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.process-board {
    position: relative;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.process-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    max-width: none;
    overflow: visible;
}

.process-svg * {
    max-width: none;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 20px 12px;
    position: relative;
    z-index: 2;
    flex: 1;
    min-height: 0;
}

/* Zigzag grid placement */
.process-step[data-step="0"] { grid-column: 1; grid-row: 1; align-self: end; }
.process-step[data-step="1"] { grid-column: 2; grid-row: 2; align-self: start; }
.process-step[data-step="2"] { grid-column: 3; grid-row: 1; align-self: end; }
.process-step[data-step="3"] { grid-column: 4; grid-row: 2; align-self: start; }
.process-step[data-step="4"] { grid-column: 5; grid-row: 1; align-self: end; }
.process-step[data-step="5"] { grid-column: 6; grid-row: 2; align-self: start; }
.process-step[data-step="6"] { grid-column: 7; grid-row: 1; align-self: end; }

/* Step card styling - Apple frosted glass */
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
}

.process-step.active {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(76, 175, 80, 0.4);
    box-shadow: 0 8px 32px rgba(48, 128, 3, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.step-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.step-icon img {
    width: 100%;
    height: 100%;
    max-width: none;
    opacity: 0.3;
    filter: invert(1);
    transition: filter 0.4s ease, opacity 0.4s ease;
}

.step-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
    transition: color 0.4s ease;
}

.step-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 6px;
    line-height: 1.35;
    transition: color 0.4s ease;
}

.step-desc {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.5;
    transition: color 0.4s ease;
}

/* Desktop sizing boost for process section */
@media (min-width: 1024px) {
    .process-title {
        font-size: 2.6rem;
        margin-bottom: 30px;
    }

    .process-grid {
        gap: 20px 18px;
    }

    .process-step {
        padding: 20px 14px;
        border-radius: 18px;
    }

    .step-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 12px;
    }

    .step-text {
        font-size: 1.02rem;
    }

    .step-title {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .step-desc {
        font-size: 0.9rem;
    }
}

/* Short desktop screens (e.g. wide office monitors) */
@media (min-width: 769px) and (max-height: 750px) {
    .process-inner {
        padding: 70px 30px 10px;
    }

    .process-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .process-grid {
        gap: 10px 12px;
    }

    .process-step {
        padding: 12px 10px;
    }

    .step-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 6px;
    }

    .step-title {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }

    .step-desc {
        font-size: 0.7rem;
    }

    .step-text {
        font-size: 0.8rem;
    }
}

/* ===== HOME PRICING SECTION ===== */
.home-pricing {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #2d4a2d 0%, #3a5a3a 25%, #6a8a6a 50%, #c8d8c8 75%, #f6f8f6 100%);
    overflow: hidden;
}

.home-pricing-bg {
    position: absolute;
    top: 0;
    left: -30%;
    width: 160%;
    height: 100%;
    background:
        radial-gradient(ellipse 500px 350px at 30% 30%, rgba(76, 175, 80, 0.25), transparent),
        radial-gradient(ellipse 400px 300px at 65% 60%, rgba(48, 128, 3, 0.2), transparent),
        radial-gradient(ellipse 350px 250px at 50% 80%, rgba(100, 200, 100, 0.15), transparent);
    pointer-events: none;
    z-index: 0;
}

.home-pricing-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.home-pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.home-pricing-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.home-pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.home-pricing-card {
    background: #1e3a1e;
    border: 1px solid #2a5a2a;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.home-pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.home-pricing-card:nth-child(2).visible {
    transition-delay: 0.15s;
}

.home-pricing-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.home-pricing-card.featured {
    background: #1a4a1a;
    border: 2px solid #4CAF50;
    transform: translateY(40px) scale(1.05);
}

.home-pricing-card.featured.visible {
    transform: translateY(0) scale(1.05);
}

.home-pricing-card.featured:hover {
    box-shadow: 0 15px 45px rgba(48, 128, 3, 0.3);
}

.home-pricing-card .card-header {
    margin-bottom: 30px;
}

.home-pricing-card .location-name {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.home-pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: #4CAF50;
    margin-bottom: 5px;
}

.home-pricing-card .price-period {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
}

.home-pricing-card .services-list {
    text-align: left;
    margin-bottom: 30px;
}

.home-pricing-card .services-list li {
    color: rgba(255, 255, 255, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.home-pricing-card .services-list li::before {
    color: #4CAF50;
}

.home-pricing-card .pricing-cta-button {
    width: 100%;
    display: block;
}

/* Home pricing mobile */
@media (max-width: 768px) {
    .home-pricing {
        padding: 60px 0;
    }

    .home-pricing-bg {
        display: none;
    }

    .home-pricing-title {
        font-size: 2rem;
    }

    .home-pricing-subtitle {
        margin-bottom: 40px;
    }

    .home-pricing-cards {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 450px;
    }

    .home-pricing-card.featured {
        transform: translateY(40px);
    }

    .home-pricing-card.featured.visible {
        transform: translateY(0);
    }
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f6f8f6;
}

.services-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    color: #2b2b2b;
    font-size: 1.05rem;
    line-height: 1.7;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: white;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #f0f5f0;
}

.service-icon img {
    width: 40px;
    height: 40px;
    filter: invert(29%) sepia(14%) saturate(1098%) hue-rotate(71deg) brightness(96%) contrast(92%);
}

.service-card h3 {
    font-size: 1.05rem;
    color: #2e7d32;
    margin-bottom: 10px;
    font-weight: 700;
}

.service-card p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.55;
}

@media (max-width: 1024px) {
    .services-intro {
        grid-template-columns: 1fr;
    }

    .services-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-section {
        padding: 60px 0;
    }

    .services-cards {
        grid-template-columns: 1fr;
    }
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: #f6f8f6;
    padding: 0;
    overflow: hidden;
}

/* Desktop collage grid */
.gallery-collage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 280px 280px;
    gap: 4px;
    width: 100%;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    z-index: 2;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* Asymmetric collage layout */
.gi-1 { grid-column: 1 / 3; grid-row: 1; }
.gi-2 { grid-column: 3; grid-row: 1; }
.gi-3 { grid-column: 4; grid-row: 1 / 3; }
.gi-4 { grid-column: 1; grid-row: 2; }
.gi-5 { grid-column: 2; grid-row: 2; }
.gi-6 { grid-column: 3; grid-row: 2; }

/* Mobile slideshow — hidden on desktop */
.gallery-slideshow {
    display: none;
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #e0e0e0;
    overflow: hidden;
}

.gallery-slide-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.6rem;
    color: #333;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: background 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.gallery-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.08);
}

.gallery-arrow-left {
    left: 12px;
}

.gallery-arrow-right {
    right: 12px;
}

.gallery-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    padding: 0;
}

.gallery-dot.active {
    background: white;
}

@media (max-width: 768px) {
    .gallery-collage {
        display: none;
    }

    .gallery-slideshow {
        display: block;
    }
}

/* 404 Page */
.error-hero {
    position: relative;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: #1f3d2b;
    overflow: hidden;
}

.error-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 480px 280px at 25% 35%, rgba(76, 175, 80, 0.28), transparent),
        radial-gradient(ellipse 520px 360px at 70% 60%, rgba(48, 128, 3, 0.25), transparent);
    opacity: 1;
    pointer-events: none;
}

.error-card {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    color: white;
    padding: 40px 36px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px) saturate(170%);
    -webkit-backdrop-filter: blur(18px) saturate(170%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.error-code {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 10px;
}

.error-title {
    font-size: 2rem;
    margin-bottom: 14px;
}

.error-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 26px;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.error-primary,
.error-secondary {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.error-primary {
    background: linear-gradient(135deg, #308003, #4CAF50);
    color: white;
    box-shadow: 0 10px 24px rgba(48, 128, 3, 0.35);
}

.error-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(48, 128, 3, 0.4);
}

.error-secondary {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: white;
}

.error-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
    .error-card {
        padding: 32px 24px;
    }

    .error-code {
        font-size: 3.6rem;
        letter-spacing: 4px;
    }

    .error-title {
        font-size: 1.6rem;
    }
}

/* Active step state */
.process-step.active .step-icon img {
    opacity: 1;
    filter: invert(60%) sepia(52%) saturate(555%) hue-rotate(82deg) brightness(95%) contrast(89%);
}

.process-step.active .step-text,
.process-step.active .step-title {
    color: rgba(255, 255, 255, 0.95);
}

.process-step.active .step-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile: Vertical Timeline */
@media (max-width: 768px) {
    .process-wrapper {
        height: auto;
    }

    .process-section {
        position: relative !important;
        height: auto;
        padding: 60px 0;
        top: auto !important;
        left: auto !important;
        width: auto !important;
    }

    .process-bg {
        display: none;
    }

    .process-inner {
        padding: 0 20px;
        height: auto;
        justify-content: flex-start;
    }

    .process-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .process-board {
        flex: none;
    }

    .process-svg {
        display: none;
    }

    .process-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding-left: 60px;
        height: auto;
    }

    /* Reset grid placement */
    .process-step[data-step="0"],
    .process-step[data-step="1"],
    .process-step[data-step="2"],
    .process-step[data-step="3"],
    .process-step[data-step="4"],
    .process-step[data-step="5"],
    .process-step[data-step="6"] {
        grid-column: auto;
        grid-row: auto;
        align-self: auto;
    }

    .process-step {
        align-items: flex-start;
        text-align: left;
        padding: 20px 15px 20px 25px;
        border-left: 3px solid rgba(255, 255, 255, 0.15);
        position: relative;
        border-radius: 0;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        border-top: none;
        border-right: none;
        border-bottom: none;
    }

    .process-step.active {
        border-left-color: #4CAF50;
        border-top: none;
        border-right: none;
        border-bottom: none;
        box-shadow: none;
        background: none;
    }

    .process-step::before {
        content: '';
        position: absolute;
        left: -8px;
        top: 28px;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        border: 3px solid #2d4a2d;
        transition: background 0.4s ease;
    }

    .process-step.active::before {
        background: #4CAF50;
    }

    .step-icon {
        position: absolute;
        left: -58px;
        top: 18px;
        width: 36px;
        height: 36px;
    }

    .step-title {
        font-size: 0.95rem;
    }

    .step-desc {
        font-size: 0.85rem;
    }

    .step-text {
        font-size: 0.95rem;
    }
}

/* Additional Benefits Section */
.additional-benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fffe, #f0f8f0);
}

.benefits-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.benefits-text {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: white;
}

.why-choose-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.why-choose-row.reverse {
    grid-template-columns: 1fr 1fr;
}

.why-choose-row.reverse .why-choose-image {
    order: 1;
}

.why-choose-row.reverse .why-choose-content {
    order: 2;
}

.office-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.why-choose-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.why-choose-subtitle {
    font-size: 1.2rem;
    color: #999;
    margin-bottom: 20px;
}

.why-choose-description {
    font-size: 1.1rem;
    color: #999;
    line-height: 1.8;
    text-decoration: underline;
}

/* Call to Action Section */
.cta-section {
    padding: 60px 0;
    background: #f5f5f5;
    text-align: center;
}

.cta-question {
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
}

.cta-link {
    color: #308003;
    text-decoration: underline;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #2a7003;
}

/* Footer & Contact Icon Placeholders */
.footer-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 4px;
    filter: brightness(0) invert(1);
}

.footer-flag {
    width: 16px;
    height: 12px;
    border-radius: 2px;
    vertical-align: middle;
    margin: 0 6px 0 2px;
}

.contact-icon-img {
    width: 28px;
    height: 28px;
}

/* Honeypot (anti-spam) */
.hp-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

html[lang="sk"] .contact-value.lang-toggle .phone-hu {
    display: none;
}

html[lang="hu"] .contact-value.lang-toggle .phone-sk {
    display: none;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 30px 0 15px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-company-name {
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-description {
    color: #b3b3b3;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #308003;
}

.footer-contact p {
    margin-bottom: 10px;
    color: #b3b3b3;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #308003;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #b3b3b3;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #308003;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 8px 20px rgba(48, 128, 3, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #2a7003;
    transform: translateY(-3px);
}

/* Floating Phone Button (mobile only) */
.floating-phone {
    display: none;
}

@media (max-width: 768px) {
    .floating-phone {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: 30px;
        left: 20px;
        width: 52px;
        height: 52px;
        background: linear-gradient(135deg, #308003, #4CAF50);
        border-radius: 50%;
        z-index: 999;
        box-shadow: 0 4px 15px rgba(48, 128, 3, 0.4);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        text-decoration: none;
    }

    .floating-phone:hover {
        transform: scale(1.08);
        box-shadow: 0 6px 20px rgba(48, 128, 3, 0.5);
    }

    .floating-phone svg {
        max-width: none;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
        padding: 10px 20px;
    }

    .nav-section {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .separator {
        display: none;
    }

    .hero {
        height: 100vh;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .benefits-title {
        font-size: 2rem;
    }

    .why-choose-title {
        font-size: 1.6rem;
    }

    .container {
        padding: 0 15px;
    }

    .exclusive-section,
    .additional-benefits,
    .why-choose-us {
        padding: 60px 0;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Contact Page Specific Styles */
.contact-section {
    margin-top: 80px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.contact-header {
    text-align: center;
    padding: 40px 30px 30px;
    background: linear-gradient(135deg, #308003, #4CAF50);
    color: white;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 50px;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.5rem;
    color: #308003;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f0f8f0;
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 2px;
}

.contact-label {
    font-weight: 600;
    color: #308003;
    margin-bottom: 5px;
}

.contact-value {
    color: #555;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #308003;
    box-shadow: 0 0 0 3px rgba(48, 128, 3, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.company-toggle {
    margin: 30px 0;
}

.toggle-container {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #999;
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
}

#hasCompany {
    display: none;
}

#hasCompany:checked + .checkbox-label .checkbox-custom {
    background-color: #308003;
    border-color: #308003;
}

#hasCompany:checked + .checkbox-label .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.company-fields {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.company-fields.show {
    max-height: 500px;
    opacity: 1;
    margin-top: 20px;
}

.submit-button {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #308003, #4CAF50);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.submit-button:hover {
    background: linear-gradient(135deg, #2a7003, #45a049);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(48, 128, 3, 0.3);
}

.footer-section .footer-contact a {
    color: white !important;
    text-decoration: underline !important;
    transition: color 0.3s ease;
}

.footer-section .footer-contact a:hover {
    color: #308003 !important;
}


@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-choose-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-row.reverse {
        direction: ltr;
    }

    .office-image {
        height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

}

/* Complete Mobile Fixes */
@media (max-width: 768px) {
    /* Header mobile menu */
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        width: 30px;
        height: 25px;
        justify-content: space-between;
    }

    .mobile-menu-toggle span {
        width: 100%;
        height: 3px;
        background: white;
        border-radius: 2px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: linear-gradient(135deg, #308003, #4CAF50);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        gap: 30px;
        transition: right 0.3s ease;
        z-index: 9999;
    }

    .nav-links.mobile-open {
        right: 0;
    }

    /* Benefits cards vertical */
    .benefits-grid {
        flex-direction: column !important;
        gap: 30px;
    }

    .benefit-card {
        width: 100%;
        margin: 0;
    }

    /* Why choose us - image above text */
    .why-choose-row {
        grid-template-columns: 1fr !important;
        gap: 30px;
        text-align: center;
    }

    .why-choose-image {
        order: 1 !important;
    }

    .why-choose-content {
        order: 2 !important;
    }

    /* Footer vertical */
    .footer-content {
        flex-direction: column !important;
        gap: 30px;
        text-align: center;
    }

    .footer-section {
        width: 100%;
    }

    /* Hero adjustments */
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /* Section padding */
    .exclusive-section,
    .additional-benefits,
    .why-choose-us {
        padding: 60px 0;
    }

    /* Container centering */
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
}

/* Fix horizontal scroll */
html, body {
    overflow-x: hidden;
    width: 100%;
}

* {
    box-sizing: border-box;
}

/* Hide mobile menu on desktop */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Mobile Header Fixes */
@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }

    .nav-section {
        position: relative;
    }

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: linear-gradient(135deg, #308003, #4CAF50);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 80px;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 9999;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
}

.nav-links.mobile-open {
    right: 0;
}

/* Nice mobile menu styling */
@media (max-width: 768px) {
    .nav-links .nav-link {
        width: 100%;
        text-align: center;
        padding: 20px 30px;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        font-size: 1.1rem;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .nav-links .nav-link:hover {
        background: rgba(255,255,255,0.1);
        color: #f0f8f0;
    }

    .nav-links .separator {
        display: none;
    }

    .nav-links .cta-button {
        display: block !important;
        background: rgba(255,255,255,0.2);
        border: 2px solid white;
        margin: 20px 30px;
        padding: 15px 25px;
        border-radius: 50px;
        text-align: center;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }

    .nav-links .cta-button:hover {
        background: white;
        color: #308003;
    }

    .nav-links .flag-link {
        display: block !important;
        margin: 20px 0;
        padding: 10px;
        border-top: 1px solid rgba(255,255,255,0.2);
        width: 100%;
        text-align: center;
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 25px;
    justify-content: space-between;
    position: relative;
    z-index: 10000;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-links.mobile-open {
        display: flex !important;
    }
}

    .mobile-menu-toggle span {
        width: 100%;
        height: 3px;
        background: white;
        transition: all 0.3s ease;
    }

    .cta-button {
        margin-top: 20px;
    }

    .flag-link {
        margin: 20px 0 0 0;
    }

    /* Hide mobile menu on desktop */
    .mobile-menu-toggle {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Fix horizontal scroll */
body {
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

/* Mobile Benefits Grid Fix */
@media (max-width: 768px) {
    .benefits-grid {
        flex-direction: column;
        gap: 30px;
    }

    .benefit-card {
        width: 100%;
    }
}

/* Mobile Why Choose Us Fix */
@media (max-width: 768px) {
    .why-choose-row {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .why-choose-row.reverse {
        grid-template-columns: 1fr;
    }
}

/* Mobile Footer Fix */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-section {
        width: 100%;
    }

    .footer-logo {
        justify-content: center;
    }
}

/* Force hamburger to show on mobile */
@media (max-width: 768px) {
    .nav-section {
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        order: 2;
    }
    
    .separator {
        display: none;
    }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #308003, #4CAF50);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.contact-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-hero-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.contact-hero-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    line-height: 1.2;
    margin: 0;
}

/* Contact Main Section */
.contact-main {
    padding: 80px 0;
    background: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Info Styles */
.contact-info h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid #308003;
}

.contact-item:hover {
    background: #f0f8f0;
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(48, 128, 3, 0.1);
}

.contact-icon {
    font-size: 1.8rem;
    margin-right: 20px;
    margin-top: 5px;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-weight: 700;
    color: #308003;
    margin-bottom: 8px;
    font-size: 1rem;
}

.contact-value {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.4;
}

.contact-value a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: #308003;
    text-decoration: underline;
}

/* Working Hours */
.contact-hours {
    margin-top: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #f8fffe, #f0f8f0);
    border-radius: 15px;
    border: 1px solid rgba(48, 128, 3, 0.1);
}

.contact-hours h3 {
    color: #308003;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(48, 128, 3, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item span:first-child {
    color: #666;
    font-weight: 600;
}

.hours-item span:last-child {
    color: #308003;
    font-weight: 700;
}

/* Contact Form Styles */
.contact-form h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-description {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: white;
}

.form-group input.is-invalid,
.form-group textarea.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12);
}

.field-error {
    min-height: 18px;
    margin-top: 6px;
    font-size: 0.9rem;
    color: #dc3545;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #308003;
    box-shadow: 0 0 0 3px rgba(48, 128, 3, 0.1);
    background: #fafffe;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Company Toggle */
.company-toggle {
    margin: 35px 0;
}

.toggle-container {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid #999;
    border-radius: 5px;
    margin-right: 15px;
    position: relative;
    transition: all 0.3s ease;
}

#hasCompany {
    display: none;
}

#hasCompany:checked + .checkbox-label .checkbox-custom {
    background-color: #308003;
    border-color: #308003;
}

#hasCompany:checked + .checkbox-label .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.company-fields {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.company-fields.show {
    max-height: 500px;
    opacity: 1;
    margin-top: 20px;
}

/* Submit Button */
.submit-button {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #308003, #4CAF50);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    box-shadow: 0 8px 20px rgba(48, 128, 3, 0.3);
}

.submit-button.is-loading {
    opacity: 0.75;
    cursor: wait;
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-button:hover {
    background: linear-gradient(135deg, #2a7003, #45a049);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(48, 128, 3, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

/* Maps Section */
.maps-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.maps-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
    font-weight: 700;
}

.maps-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.maps-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.maps-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.maps-info p {
    margin-bottom: 10px;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.maps-info p:first-child {
    color: #308003;
    font-weight: 600;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 60px;
        margin-top: 70px;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-label {
        font-size: 1rem;
    }

    .contact-main {
        padding: 60px 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info {
        order: 1;
    }

    .contact-form {
        order: 2;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 1.8rem;
    }

    .contact-item {
        padding: 20px;
        margin-bottom: 20px;
    }

    .contact-icon {
        font-size: 1.5rem;
        margin-right: 15px;
    }

    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .maps-section {
        padding: 60px 0;
    }

    .maps-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .maps-container iframe {
        height: 300px;
    }

    .contact-hero-decoration {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-container {
        gap: 40px;
    }

    .contact-item {
        padding: 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
    }

    .submit-button {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .maps-container iframe {
        height: 250px;
    }
}

/* ===== SERVICES PAGE STYLES ===== */

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, #308003, #4CAF50);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.services-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.services-hero-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.services-hero-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    line-height: 1.2;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: white;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: #999;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.billing-label {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.billing-label.active {
    color: #308003;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background-color: #999;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-switch.active {
    background-color: #308003;
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background-color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.toggle-switch.active .toggle-slider {
    transform: translateX(30px);
}

.discount-badge {
    background: linear-gradient(135deg, #308003, #4CAF50);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 10px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.discount-badge.show {
    opacity: 1;
    transform: scale(1);
}

/* Pricing Cards */
.pricing-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border: 3px solid #308003;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: -1px;
    right: 30px;
    background: linear-gradient(135deg, #308003, #4CAF50);
    color: white;
    padding: 10px 25px;
    border-radius: 0 0 15px 15px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.location-name {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.pricing-card.featured .location-name {
    color: #308003;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #308003;
    margin-bottom: 5px;
}

.price-period {
    color: #999;
    font-size: 1rem;
    font-weight: 500;
}

.services-list {
    list-style: none;
    margin-bottom: 40px;
}

.services-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 30px;
    color: #555;
    font-size: 1rem;
    line-height: 1.4;
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #308003;
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-cta-button {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #308003, #4CAF50);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
    display: block;
}

.pricing-cta-button:hover {
    background: linear-gradient(135deg, #2a7003, #45a049);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(48, 128, 3, 0.3);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #f5f5f5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.feature-icon {
    margin-bottom: 25px;
}

.checkmark-icon {
    width: 50px;
    height: 50px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.feature-description {
    color: #999;
    line-height: 1.6;
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f0f8f0;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    color: #308003;
    font-weight: bold;
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 25px 30px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .services-hero {
        padding: 100px 0 60px;
        margin-top: 70px;
    }

    .services-hero-title {
        font-size: 2.5rem;
    }

    .services-hero-label {
        font-size: 1rem;
    }

    .pricing-section {
        padding: 60px 0;
    }

    .pricing-title {
        font-size: 2rem;
    }

    .pricing-cards-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .features-section {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-item.active .faq-answer {
        padding: 20px;
    }

    .billing-toggle {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .services-hero-title {
        font-size: 2rem;
    }

    .pricing-title {
        font-size: 1.8rem;
    }

    .location-name {
        font-size: 1.6rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .checkmark-icon {
        width: 40px;
        height: 40px;
    }

    .faq-question {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .faq-icon {
        margin-left: 0;
        align-self: flex-end;
    }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    padding: 20px 30px;
    z-index: 99999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    display: none;
}

.cookie-banner.visible {
    display: block;
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.cookie-banner-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ccc;
}

.cookie-banner-text a {
    color: #4CAF50;
    text-decoration: underline;
    cursor: pointer;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn-accept {
    background: #308003;
    color: white;
}

.cookie-btn-accept:hover {
    background: #2a7003;
}

.cookie-btn-decline {
    background: transparent;
    color: #ccc;
    border: 1px solid #555;
}

.cookie-btn-decline:hover {
    border-color: #999;
    color: white;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 20px;
    }

    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ===== LEGAL MODAL ===== */
.legal-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.legal-modal-overlay.visible {
    display: flex;
}

.legal-modal {
    background: white;
    border-radius: 15px;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.legal-modal-header {
    position: sticky;
    top: 0;
    background: white;
    padding: 25px 30px 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px 15px 0 0;
}

.legal-modal-header h2 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
    font-weight: 700;
}

.legal-modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    padding: 0 5px;
    line-height: 1;
}

.legal-modal-close:hover {
    color: #333;
}

.legal-modal-body {
    padding: 25px 30px 30px;
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

.legal-modal-body h3 {
    color: #333;
    font-size: 1.15rem;
    margin: 25px 0 10px;
    font-weight: 700;
}

.legal-modal-body h3:first-child {
    margin-top: 0;
}

.legal-modal-body p {
    margin-bottom: 12px;
}

.legal-modal-body ul {
    margin: 10px 0 15px 20px;
}

.legal-modal-body li {
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    .legal-modal {
        max-height: 90vh;
    }

    .legal-modal-header {
        padding: 20px;
    }

    .legal-modal-body {
        padding: 20px;
    }

    .legal-modal-header h2 {
        font-size: 1.3rem;
    }
}
