:root {
    --primary: #f8f9fa;
    --accent: #003000;
    --accent-light: #004800;
    --accent-dark: #002000;
    --text: #333333;
    --light: #ffffff;
    --container: 1280px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--primary);
    color: var(--text);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.shell {
    width: min(var(--container), 92%);
    margin: 0 auto;
}



.floating-nav {
    position: fixed;
    top: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, 95%);
    z-index: 100;
    background: rgba(0, 48, 0, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.floating-nav.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: rgba(0, 48, 0, 0.98);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 3rem;
    padding: 0 0.5rem;
}

.brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    letter-spacing: -0.02em;
    position: relative;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    opacity: 0.9;
    transition: all 0.2s;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.nav-menu a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.nav-contact {
    margin-left: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    opacity: 0.9;
}

.btn-quote {
    background: white;
    color: var(--accent);
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 0.5rem;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-left: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-quote:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.btn-menu {
    display: none;
    background: none;
    border: none;
    width: 24px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.btn-menu span,
.btn-menu span::before,
.btn-menu span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: white;
    transition: all 0.3s;
}

.btn-menu span {
    top: 50%;
    transform: translateY(-50%);
}

.btn-menu span::before {
    top: -8px;
}

.btn-menu span::after {
    bottom: -8px;
}

.btn-menu.active span {
    background: transparent;
}

.btn-menu.active span::before {
    top: 0;
    transform: rotate(45deg);
}

.btn-menu.active span::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.hero {
    height: 100vh;
    background: url('images/hero.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 0;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,48,0,0.5), rgba(0,0,0,0.2));
    z-index: 1;
}

.hero-content {
    color: var(--light);
    max-width: 720px;
    animation: fadeIn 1s ease forwards;
    position: relative;
    z-index: 2;
    padding: 3rem;
    background: transparent;
    border-radius: 1rem;
    border: none;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-feature i {
    color: rgba(255, 255, 255, 0.9);
}

.hero-feature span {
    font-size: 0.875rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero {
        background-position: 45% center;
    }
    
    .hero-features {
        display: none;
    }
    
    .hero-feature {
        width: fit-content;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions a {
        width: 100%;
        text-align: center;
    }
}

.btn-primary {
    background: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 48, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 0.5rem;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover,
.btn-outline:hover {
    transform: translateY(-2px);
}

.btn-primary:hover {
    background: var(--accent-light);
    box-shadow: 0 6px 16px rgba(0, 48, 0, 0.3);
}

.btn-outline:hover {
    border-color: rgba(255,255,255,0.8);
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav {
    position: fixed;
    inset: 0.75rem;
    margin: 0 auto;
    width: 95%;
    background: rgba(0, 48, 0, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    z-index: 90;
    transform: translateX(100%);
    transition: 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.mobile-nav.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.mobile-content {
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.close-menu {
    align-self: flex-end;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 0.5rem;
    cursor: pointer;
}

.mobile-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.mobile-links a {
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.9;
}

.mobile-links .btn-quote {
    color: var(--accent);
    margin-top: 1rem;
}

.mobile-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.mobile-contact a {
    color: white;
    opacity: 0.8;
    font-size: 1rem;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.mobile-social a {
    color: white;
    font-size: 1.5rem;
    opacity: 0.8;
}

.chat-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 200;
}

.chat-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 201;
}

.chat-button {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    box-shadow: 0 8px 24px rgba(0, 48, 0, 0.25);
    cursor: pointer;
    transition: all 0.2s;
}

.chat-button:hover {
    transform: translateY(-2px);
    background: var(--accent-light);
}

.chat-popup {
    position: absolute;
    bottom: calc(100% + 1rem);
    right: 0;
    width: 320px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 1.75rem;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.chat-popup.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.chat-popup h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.chat-popup p {
    font-size: 0.9375rem;
    color: #64748b;
    margin-bottom: 1.25rem;
}

.chat-popup form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chat-popup input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.9375rem;
    transition: all 0.2s;
}

.chat-popup input:focus {
    outline: none;
    border-color: var(--accent);
}

.chat-popup button {
    background: var(--accent);
    color: white;
    padding: 0.875rem;
    border: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.2s;
}

.chat-popup button:hover {
    transform: translateY(-2px);
    background: var(--accent-light);
}

@media (max-width: 1000px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .contact-link span {
        display: none;
    }

    .contact-link:before {
        content: 'Ring';
    }
}

@media (max-width: 850px) {
    .nav-menu {
        display: none;
    }

    .btn-menu {
        display: block;
        margin-right: 0.5rem;
    }
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .hero {
        padding: 4rem 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* intro */

.intro {
    padding: 5rem 0;
    background: #f0f4f0;
    position: relative;
    overflow: hidden;
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: rgba(0, 48, 0, 0.03);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.intro-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    position: relative;
}

.intro-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.intro-header h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
}

.intro-header p {
    font-size: 1.25rem;
    color: #334155;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 800px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--accent);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 48, 0, 0.03), transparent);
    z-index: 0;
}

.service-icon {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--accent);
    display: block;
    margin-bottom: 1rem;
}

.service-icon h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-content p {
    color: #334155;
    font-size: 1rem;
    line-height: 1.7;
}

.intro-cta {
    text-align: center;
    position: relative;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 48, 0, 0.2);
}

.cta-button:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 48, 0, 0.25);
}

.cta-button i {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .intro {
        padding: 4rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-header h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 2rem;
    }
}

/* About Preview */
.section-badge {
    display: inline-block;
    background: rgba(0, 48, 0, 0.1);
    color: var(--accent);
    padding: 0.5rem 1.25rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-preview {
    padding: 6rem 0;
    background: #fff;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -25px;
    right: 40px;
    background: var(--accent);
    color: white;
    width: 110px;
    height: 110px;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 48, 0, 0.2);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.875rem;
    text-align: center;
}

.rounded-image {
    border-radius: 0.5rem;
    overflow: hidden;
}

.about-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 1rem;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--accent);
}

.about-text p {
    font-size: 1.125rem;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-features {
    list-style: none;
    margin-bottom: 2rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: #334155;
    padding: 0.5rem 0;
}

.about-features li i {
    color: var(--accent);
    font-size: 1.25rem;
    background: rgba(0, 48, 0, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
}

.btn-secondary {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 48, 0, 0.15);
}

.btn-secondary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 48, 0, 0.2);
}

@media (max-width: 768px) {
    .about-preview {
        padding: 4rem 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
}

/* Gallery */
.gallery {
    padding: 6rem 0;
    background: #f0f4f0;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.gallery-header h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
}

.gallery-header p {
    font-size: 1.25rem;
    color: #64748b;
}

.gallery-swiper {
    width: 100%;
    height: 550px;
    padding: 1rem;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.swiper-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-slide:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-swiper:hover .swiper-button-next,
.gallery-swiper:hover .swiper-button-prev {
    opacity: 1;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.5rem;
    font-weight: bold;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--accent) !important;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent);
    transform: scale(1.2);
}

.cta-banner {
    padding: 8rem 0;
    background: linear-gradient(to right, rgba(0, 48, 0, 0.9), rgba(0, 48, 0, 0.8)), url('images/9.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-text {
    color: white;
    flex: 1;
}

.cta-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-header {
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--accent);
}

.text-center {
    text-align: center;
}

.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 800px;
}

.text-center p {
    margin: 0 auto;
}

.process-section {
    padding: 6rem 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: rgba(0, 48, 0, 0.03);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-icon-wrapper {
    position: relative;
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 48, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.step-icon i {
    color: var(--accent);
    font-size: 1.75rem;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 48, 0, 0.2);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

.step-content p {
    color: #64748b;
    line-height: 1.7;
}

.process-cta {
    text-align: center;
    margin-top: 4rem;
}

.services-section {
    padding: 6rem 0;
    background: white;
}

.services-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-box {
    background: #f8f9fa;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    position: relative;
    border-top: 4px solid var(--accent);
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.service-box:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

.service-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #334155;
}

.service-list li i {
    color: var(--accent);
    font-size: 0.875rem;
}

.service-btn {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s;
}

.service-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.services-more {
    text-align: center;
}

.btn-outline-accent {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--accent);
    padding: 1rem 2rem;
    border: 2px solid var(--accent);
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-accent i {
    transition: transform 0.3s;
}

.btn-outline-accent:hover i {
    transform: translateX(4px);
}

.contact-section {
    padding: 6rem 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: rgba(0, 48, 0, 0.03);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    padding-top: 1rem;
}

.contact-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--accent);
}

.contact-info p {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 48, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    color: var(--accent);
    font-size: 1.25rem;
}

.feature-text {
    flex: 1;
}

.feature-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--accent);
}

.feature-text p {
    font-size: 0.9375rem;
    color: #64748b;
    margin-bottom: 0;
}

.contact-direct {
    display: flex;
    gap: 1.5rem;
}

.contact-phone,
.contact-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: white;
    padding: 0.875rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s;
}

.contact-phone:hover,
.contact-email:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.contact-form-wrapper {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #334155;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 48, 0, 0.1);
}

.main-footer {
    background: var(--accent);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    margin-bottom: 1.5rem;
}

.footer-brand .brand {
    display: inline-block;
    align-self: flex-start;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: white;
    text-decoration: none;
    letter-spacing: -0.02em;
    position: relative;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 160px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
    margin-left: 0;
    align-self: flex-start;
}

.footer-brand p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 300px;
}

.footer-brand img {
    margin-left: 0;
    align-self: flex-start;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-contact h4,
.footer-nav h4,
.footer-social h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-contact h4::after,
.footer-nav h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .footer-logo {
        height: 90px;
    }
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-details a,
.contact-details span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    opacity: 0.9;
    transition: all 0.2s;
    text-decoration: none;
}

.contact-details a:hover {
    opacity: 1;
    transform: translateX(3px);
}

.contact-details i {
    width: 20px;
    text-align: center;
    font-size: 1.125rem;
}

.footer-nav nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.2s;
    display: block;
    padding: 0.25rem 0;
}

.footer-nav a:hover {
    opacity: 1;
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.social-link i {
    font-size: 1.25rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        row-gap: 3rem;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 4rem 0 2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-family: inherit;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .services-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
    }
    
    .services-boxes {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-direct {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-phone, 
    .contact-email {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
}

.cta-text p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    opacity: 0.9;
    max-width: 600px;
}

.en-enkel-trygg {
    line-height: 1.2 !important;
    white-space: normal !important;
    word-break: normal !important;
    hyphens: none !important;
}

.cta-banner {
    padding: 6rem 0 !important;
    background: linear-gradient(to right, rgba(0, 48, 0, 0.9), rgba(0, 48, 0, 0.8)), url('images/9.jpeg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}

.cta-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 2rem !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
}

.cta-text {
    color: white !important;
    flex: 1 !important;
    min-width: 280px !important;
}

.cta-text h2 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    line-height: 1.2 !important;
    white-space: normal !important;
}

.cta-text p {
    font-size: clamp(1rem, 1.5vw, 1.25rem) !important;
    opacity: 0.9 !important;
    line-height: 1.5 !important;
    white-space: normal !important;
}

.cta2-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    background: white !important;
    color: var(--accent) !important;
    padding: 1rem 2rem !important;
    border: none !important;
    border-radius: 0.5rem !important;
    font-weight: 600 !important;
    font-size: 1.125rem !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    min-width: 200px !important;
}

@media (max-width: 768px) {
    .cta-content {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .cta-text {
        margin-bottom: 1rem !important;
    }
    
    .cta-banner {
        padding: 4rem 0 !important;
    }
    
    .process-title {
        white-space: normal !important;
        line-height: 1.3 !important;
        font-size: 2rem !important;
    }
}

.gallery {
    padding: 6rem 0 !important;
    background: #f0f4f0 !important;
    position: relative !important;
}

.gallery-header {
    text-align: center !important;
    margin-bottom: 3rem !important;
}

.gallery-header h2 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: var(--accent) !important;
    margin-bottom: 1rem !important;
    letter-spacing: -0.02em !important;
    position: relative !important;
    display: inline-block !important;
    white-space: normal !important;
    line-height: 1.3 !important;
}

.gallery-header p {
    font-size: 1.25rem !important;
    color: #64748b !important;
    white-space: normal !important;
    line-height: 1.5 !important;
}

.gallery-swiper {
    width: 100% !important;
    height: 550px !important;
    padding: 1rem !important;
}

@media (max-width: 1024px) {
    .gallery-swiper {
        height: 400px !important;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 4rem 0 !important;
    }
    
    .gallery-header h2 {
        font-size: 2rem !important;
    }
    
    .gallery-swiper {
        height: 300px !important;
    }
}

@media (max-width: 480px) {
    .gallery-swiper {
        height: 250px !important;
    }
}

.cta2-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: var(--accent);
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 0.5rem;
    font-family: inherit;
    font-weight: 600;
    font-size: 1.125rem;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta2-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.cta2-button i {
    transition: transform 0.3s ease;
}

.cta2-button:hover i {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .gallery {
        padding: 5rem 0;
    }
    
    .gallery-swiper {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 4rem
        
