/* ==========================================================================
   Table of Contents:
   1. CSS Variables & Reset
   2. Global Styles
   3. Cookie Banner
   4. Header & Navigation
   5. Hero Section (Slider)
   6. Process Section
   7. Services Section
   8. About Section
   9. FAQ Section
   10. Contact Section
   11. Footer
   ========================================================================== */

/* ==========================================================================
   PREVENT HORIZONTAL SCROLL & ZOOM OUT
   ========================================================================== */

html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
}

* {
    box-sizing: border-box;
}

/* Prevent elements from overflowing */
img, video, iframe {
    max-width: 100%;
    height: auto;
}


/* ==========================================================================
   1. CSS VARIABLES & RESET
   ========================================================================== */

:root {
    /* Colors */
    --color-primary: #3a7d44;
    --color-primary-dark: #2d5f35;
    --color-primary-light: #4a9a54;
    --color-accent: #ff6b35;
    --color-accent-dark: #e55a2b;
    --color-text: #333;
    --color-text-light: #666;
    --color-bg-light: #f8f9fa;
    --color-bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #e8f5e8 100%);
    --color-white: #ffffff;
    
    /* Typography */
    --font-family: Arial, sans-serif;
    --font-size-base: 1rem; /* 16px */
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-xs: 0.3125rem;    /* 5px */
    --spacing-sm: 0.625rem;     /* 10px */
    --spacing-md: 1.25rem;      /* 20px */
    --spacing-lg: 2rem;         /* 32px */
    --spacing-xl: 3rem;         /* 48px */
    --spacing-xxl: 5rem;        /* 80px */
    
    /* Border Radius */
    --radius-sm: 0.3125rem;     /* 5px */
    --radius-md: 0.625rem;      /* 10px */
    --radius-lg: 1.25rem;       /* 20px */
    
    /* Shadows */
    --shadow-sm: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.1);
    --shadow-md: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 1rem 2.5rem rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* Universal Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==========================================================================
   2. GLOBAL STYLES
   ========================================================================== */

body {
    font-family: var(--font-family);
    line-height: var(--line-height-base);
    color: var(--color-text);
    background-color: var(--color-primary);
}

.container {
    max-width: 75rem; /* 1200px */
    margin: 0 auto;
    padding: 0 1.25rem; /* 20px */
    overflow-x: hidden;
}

/* Section Title - Reusable Component */
.section-title {
    text-align: center;
    margin-bottom: 3.75rem; /* 60px */
}

.section-title h2 {
    font-size: 2.5rem; /* 40px */
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 37.5rem; /* 600px */
    margin: 0 auto;
    line-height: 1.6;
}

/* Tablet */
@media (max-width: 1024px) {
    .section-title h2 {
        font-size: 2.2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-title p {
        font-size: 1.1rem;
        padding: 0 0.9375rem; /* 15px */
    }
}

/* ==========================================================================
   3. COOKIE BANNER
   ========================================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(58, 125, 68, 0.98);
    color: var(--color-white);
    padding: 1.25rem; /* 20px */
    z-index: 10000;
    box-shadow: 0 -0.25rem 1.25rem rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-content {
    max-width: 75rem; /* 1200px */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem; /* 20px */
}

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
    color: var(--color-white) !important;
}

.cookie-buttons {
    display: flex;
    gap: 0.625rem; /* 10px */
}

.cookie-accept,
.cookie-reject {
    padding: 0.625rem 1.5625rem; /* 10px 25px */
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.cookie-accept {
    background: var(--color-white);
    color: var(--color-primary);
}

.cookie-accept:hover {
    background: #f0f0f0;
}

.cookie-reject {
    background: transparent;
    color: var(--color-white);
    border: 0.125rem solid var(--color-white);
}

.cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }
}

/* ==========================================================================
   4. HEADER & NAVIGATION
   ========================================================================== */

/* Emergency Phone Header (Mobile Only) */
.phone-header {
    display: none;
    background-color: var(--color-primary);
    padding: 0.5rem 0;
    color: var(--color-white);
    font-weight: bold;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    border-bottom: 0.0625rem solid #7fb685;
    transition: top 0.3s ease;
}

.phone-header a {
    color: var(--color-white);
    text-decoration: none;
}

.phone-header.hidden {
    top: -3.125rem; /* -50px */
}

/* Main Header */
header {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 1rem 0;
    width: 100%;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-base);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.03125rem;
    text-decoration: none;
    transition: var(--transition-base);
    display: inline-block;
}


/* Desktop Navigation */
.nav-links {
    display: flex;
    list-style: none;
    gap: 1.875rem; /* 30px */
}

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #6bb872;
}

/* Burger Menu (Hidden on Desktop) */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.3125rem; /* 5px */
    z-index: 1001;
}

.burger-menu span {
    width: 1.75rem; /* 28px */
    height: 0.1875rem; /* 3px */
    background-color: var(--color-white);
    margin: 0.25rem 0; /* 4px */
    transition: var(--transition-base);
    border-radius: 0.125rem; /* 2px */
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

/* Mobile Navigation Overlay */
.mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #1e3a24 0%, #3a7d44ed 50%, #1e3a24 100%);
    z-index: 1000;
    padding-top: 6.25rem; /* 100px */
    transform: translateX(-100%);
    overflow-y: auto; 
    transition: transform 0.3s ease;
    /* -webkit-overflow-scrolling: touch; */
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav-links li {
    margin: 1.875rem 0; /* 30px */
}

.mobile-nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 0.9375rem 1.875rem; /* 15px 30px */
    display: block;
    transition: var(--transition-base);
}

.mobile-nav-links a:hover {
    color: #6bb872;
}

body.menu-open {
    overflow: hidden;
}

/* Tablet */
@media (max-width: 1024px) {
    .logo {
        font-size: 1.2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .phone-header {
        display: block;
    }

    header {
        position: fixed !important;
        top: 2.5rem; /* 40px - phone-header height */
        width: 100%;
        z-index: 1000;
        transition: top 0.3s ease;
    }

    header.without-phone {
        top: 0;
    }

    .nav-links {
        display: none;
    }

    .burger-menu {
        display: flex;
    }
}

/* ==========================================================================
   5. HERO SECTION (SLIDER)
   ========================================================================== */

.hero {
    position: relative;
    height: 80vh;
    min-height: 37.5rem; /* 600px */
    max-height: 56.25rem; /* 900px */
    overflow: hidden;
    
}

/* Slider Container */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slide */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: all;
}

/* Background Image with Overlay */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% 35%;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

/* ==========================================================================
   HERO BACKGROUND IMAGES
   ========================================================================== */

.hero-slide1 {
    background-image: url('../images/hero/hero-slide1.jpeg');
    background-position: 50% 35%;
}

.hero-slide2 {
    background-image: url('../images/hero/hero-slide3.jpeg');
    background-position: 50% 35%;
}

.hero-slide3 {
    background-image: url('../images/hero/hero-slide2.jpeg');
    background-position: 50% 35%;
}

/* ==========================================================================
   HERO CONTENT
   ========================================================================== */

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 50rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 65vh;
    gap: 2rem;
    padding: 2rem 1rem;
    color: var(--color-white);
}

.hero-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Typography */
.hero h1,
.hero h2,
.hero .hero-h2 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 0.1875rem 0.1875rem 0.5rem rgba(0, 0, 0, 0.9);
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: var(--color-white);
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.7;
    text-shadow: 0.125rem 0.125rem 0.375rem rgba(0, 0, 0, 0.9);
    font-weight: 500;
    margin: 0 0 1rem 0;
}

/* Hero Intro (za Slide 2) */
.hero-intro {
    font-size: 1.3rem;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-shadow: 0.125rem 0.125rem 0.375rem rgba(0, 0, 0, 0.9);
}

.hero-intro strong {
    color: var(--color-accent);
    font-weight: 700;
}

/* Hero Features List */
.hero-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    text-align: left;
}

.hero-features li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    text-shadow: 0.125rem 0.125rem 0.375rem rgba(0, 0, 0, 0.9);
    line-height: 1.6;
}

.hero-features li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.hero-features strong {
    color: var(--color-white);
    font-weight: 700;
}

.hero-features-desktop-only {
    display: block;
}

/* Hero Highlight Box */
.hero-highlight {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    border-left: 0.3125rem solid var(--color-accent);
    font-weight: 600;
    backdrop-filter: blur(0.25rem);
    margin: 1.5rem 0;
    font-size: 1.15rem;
    line-height: 1.6;
    text-shadow: 0.125rem 0.125rem 0.375rem rgba(0, 0, 0, 0.9);
}

/* Desktop Details (hidden on mobile) */
.hero-details-desktop {
    display: block;
   
}

.hero-slide.slide-1 .hero-details-desktop {
    padding-top: 5rem; 
}


/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 1.25rem 3rem;
    text-decoration: none;
    border-radius: 3rem;
    font-weight: 700;
    font-size: 1.125rem;
    transition: var(--transition-base);
    box-shadow: 0 0.375rem 1.25rem rgba(255, 107, 53, 0.5);
}


.cta-button:hover {
    background: var(--color-accent-dark);
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.5rem 1.5625rem rgba(255, 107, 53, 0.6);
}

/* ==========================================================================
   SLIDER NAVIGATION
   ========================================================================== */

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: var(--color-white);
    font-size: 3rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 10;
    font-weight: 300;
    line-height: 1;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 1.5rem;
}

.slider-next {
    right: 1.5rem;
}

/* Slide Indicators */
.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 3rem;
    height: 0.5rem;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 0.25rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

.indicator.active {
    background: var(--color-white);
    width: 4rem;
}

/* ==========================================================================
   RESPONSIVE - TABLET
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-content {
        min-height: 60vh;
        gap: 1.5rem;
        max-width: 45rem;
    }

    .hero h1,
    .hero h2,
    .hero .hero-h2 {
        font-size: 2.75rem;
    }

    .hero p {
        font-size: 1.15rem;
    }

    .hero-intro {
        font-size: 1.2rem;
    }

    .hero-features li {
        font-size: 1rem;
    }

    .hero-highlight {
        font-size: 1.05rem;
        padding: 0.875rem 1.25rem;
    }

    .cta-button {
        padding: 1.125rem 2.5rem;
        font-size: 1.0625rem;
    }
}

/* ==========================================================================
   RESPONSIVE - MOBILE
   ========================================================================== */

@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 31.25rem;
        padding-top: 5rem;
    }

    .hero-content {
        min-height: 55vh;
        gap: 1.25rem;
        padding: 1.5rem 1rem;
        max-width: 100%;
    }

    .hero h1,
    .hero h2,
    .hero .hero-h2 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .hero p {
        font-size: 1.0625rem;
        margin-bottom: 0.75rem;
    }

    .hero-intro {
        font-size: 1.0625rem;
        margin-bottom: 1rem;
    }

    /* Hide desktop-only elements on mobile */
    .hero-features-desktop-only {
        display: none !important;
    }

    .hero-details-desktop {
        display: none !important;
    }

    .hero-highlight {
        font-size: 1rem;
        padding: 0.75rem 1rem;
        margin: 1rem 0;
    }

    .cta-button {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Smaller arrows */
    .slider-arrow {
        width: 3rem;
        height: 3rem;
        font-size: 2.25rem;
    }

    .slider-prev {
        left: 0.75rem;
    }

    .slider-next {
        right: 0.75rem;
    }

    /* Smaller indicators */
    .indicator {
        width: 2rem;
        height: 0.375rem;
    }

    .indicator.active {
        width: 3rem;
    }

    .slider-indicators {
        bottom: 1.25rem;
        gap: 0.625rem;
    }
}

/* ==========================================================================
   RESPONSIVE - SMALL MOBILE
   ========================================================================== */

@media (max-width: 480px) {
    .hero {
        height: 65vh;
        min-height: 28.125rem;
    }

    .hero-content {
        min-height: 50vh;
        gap: 1rem;
        padding: 1rem 0.75rem;
    }

    .hero h1,
    .hero h2,
    .hero .hero-h2 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-intro {
        font-size: 1rem;
    }

    .hero-highlight {
        font-size: 0.9375rem;
        padding: 0.625rem 0.875rem;
    }

    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
    }

    .slider-arrow {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 2rem;
    }

    .slider-prev {
        left: 0.5rem;
    }

    .slider-next {
        right: 0.5rem;
    }
}

/* ==========================================================================
   LANDSCAPE MODE
   ========================================================================== */

@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        height: 90vh;
    }

    .hero-content {
        min-height: 80vh;
        gap: 0.75rem;
    }

    .hero h1,
    .hero h2,
    .hero .hero-h2 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .hero p {
        font-size: 0.9375rem;
        margin-bottom: 0.5rem;
    }

    .hero-highlight {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
        margin: 0.75rem 0;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   6. PROCESS SECTION
   ========================================================================== */

.process {
    padding: var(--spacing-xxl) 0;
    background: var(--color-white);
    position: relative;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Icon Circle */
.process-icon {
    position: relative;
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.625rem 1.875rem rgba(58, 125, 68, 0.3);
    transition: var(--transition-base);
    position: relative;
}

.process-step:hover .icon-circle {
    transform: translateY(-0.3125rem) scale(1.05);
    box-shadow: 0 1rem 2.5rem rgba(58, 125, 68, 0.4);
}

.icon-circle svg {
    color: var(--color-white);
    width: 3rem;
    height: 3rem;
}

/* Step Number Badge */
.step-number {
    position: absolute;
    top: -0.625rem;
    right: -0.625rem;
    width: 2rem;
    height: 2rem;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 0.25rem 0.625rem rgba(255, 107, 53, 0.4);
}

/* Process Content */
.process-content {
    flex: 1;
}

.process-content h3 {
    font-size: 1.375rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.process-content p {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.process-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.15) 100%);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border-left: 0.25rem solid var(--color-accent);
    margin-top: 1rem;
}

.process-highlight strong {
    color: var(--color-accent);
    font-size: 1rem;
}

/* Arrow Between Steps */
.process-arrow {
    position: absolute;
    right: -2rem;
    top: 3rem;
    color: var(--color-primary);
    opacity: 0.3;
}

/* Process CTA */
.process-cta {
    margin-top: 1rem;
}

.process-link {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 3.125rem;
    transition: var(--transition-base);
    box-shadow: 0 0.375rem 1.25rem rgba(255, 107, 53, 0.5);
    font-size: 0.9375rem;
}

.process-link:hover {
    background: var(--color-accent-dark);
    box-shadow: 0 0.5rem 1.5625rem rgba(255, 107, 53, 0.6);
    transform: translateY(-0.1875rem);
}

.process-cta-bottom {
    text-align: center;
    margin-top: 3rem;
}

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }

    .process-arrow {
        display: none;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .process {
        padding: 3.75rem 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1rem;
    }

    .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -2.5rem;
        transform: translateX(-50%);
        width: 0.125rem;
        height: 2.5rem;
        background: linear-gradient(180deg, var(--color-primary) 0%, rgba(58, 125, 68, 0.2) 100%);
    }

    .icon-circle {
        width: 5rem;
        height: 5rem;
    }

    .icon-circle svg {
        width: 2.5rem;
        height: 2.5rem;
    }

    .step-number {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.8125rem;
    }

    .process-content h3 {
        font-size: 1.25rem;
    }

    .process-content p {
        font-size: 0.9375rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .process-steps {
        gap: 2rem;
    }

    .process-step:not(:last-child)::after {
        bottom: -2rem;
        height: 2rem;
    }

    .icon-circle {
        width: 4.5rem;
        height: 4.5rem;
    }

    .icon-circle svg {
        width: 2.25rem;
        height: 2.25rem;
    }

    .process-content h3 {
        font-size: 1.125rem;
    }

    .process-content p {
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   7. SERVICES SECTION - FINAL DESIGN
   ========================================================================== */

.services {
    padding: var(--spacing-xxl) 0;
    background: var(--color-bg-gradient);
}

.services .section-title h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Services Subtitle - Bold prominent text */
.services-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 1.5rem 0;
    line-height: 1.4;
}

/* Services Description - Regular paragraphs */
.services-description {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
}

/* Last paragraph - no bottom margin */
.services-description:last-of-type {
    margin-bottom: 2.5rem;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .services .section-title h2 {
        font-size: 2rem;
    }

    .services-subtitle {
        font-size: 1.25rem;
        margin: 1.25rem 0;
    }

    .services-description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .services-description:last-of-type {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .services .section-title h2 {
        font-size: 1.75rem;
    }

    .services-subtitle {
        font-size: 1.125rem;
    }

    .services-description {
        font-size: 0.9375rem;
    }
}

/* ==========================================================================
   DESKTOP LAYOUT (1024px+) - HORIZONTAL CARDS + MODAL
   ========================================================================== */

@media (min-width: 1024px) {
    .services-final {
        max-width: 75rem;
        margin: 0 auto;
    }

    .service-final-card {
        display: grid;
        grid-template-columns: 25rem 1fr; /* 400px image + rest for content */
        gap: 3rem;
        align-items: center;
        margin-bottom: 3rem;
        padding: 2.5rem;
        background: white;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        border: 1px solid rgba(58, 125, 68, 0.1);
        transition: var(--transition-base);
    }

    .service-final-card:hover {
        box-shadow: var(--shadow-xl);
        border-color: var(--color-primary);
        transform: translateY(-0.5rem);
    }

    .service-final-card:last-child {
        margin-bottom: 0;
    }

    /* Image Wrapper */
    .service-image-wrapper {
        border-radius: var(--radius-md);
        overflow: hidden;
        height: 25rem; /* 400px */
        box-shadow: var(--shadow-md);
    }

    .service-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .service-final-card:hover .service-image-wrapper img {
        transform: scale(1.1);
    }

    /* Content Wrapper */
    .service-content-wrapper {
        display: flex;
        flex-direction: column;
    }

    .service-content-wrapper h3 {
        font-size: 2rem;
        color: var(--color-primary);
        margin-bottom: 0.75rem;
        font-weight: 700;
    }

    .service-intro {
        font-size: 1.125rem;
        color: var(--color-text);
        font-weight: 600;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .service-description {
        color: var(--color-text-light);
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .service-quick-list {
        list-style: none;
        padding: 0;
        margin: 0 0 2rem 0;
    }

    .service-quick-list li {
        padding: 0.5rem 0;
        padding-left: 1.75rem;
        position: relative;
        color: var(--color-text-light);
        line-height: 1.6;
    }

    .service-quick-list li:before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--color-primary);
        font-weight: bold;
        font-size: 1.125rem;
    }

    .service-btn-final {
        background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
        color: white;
        border: none;
        padding: 0.875rem 2rem;
        border-radius: 1.5625rem;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition-base);
        font-size: 1rem;
        box-shadow: 0 0.25rem 0.9375rem rgba(58, 125, 68, 0.3);
        align-self: flex-start;
    }

    .service-btn-final:hover {
        transform: translateY(-0.125rem);
        box-shadow: 0 0.375rem 1.25rem rgba(58, 125, 68, 0.4);
        background: linear-gradient(45deg, var(--color-primary-dark), var(--color-primary));
    }

    /* Hide expand content on desktop */
    .service-full-content {
        display: none;
    }

    /* Modal Styles */
    .service-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 10000;
        align-items: center;
        justify-content: center;
    }

    .service-modal.active {
        display: flex;
    }

    .service-modal-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
    }

    .service-modal-content {
        position: relative;
        background: white;
        border-radius: var(--radius-lg);
        max-width: 50rem;
        max-height: 90vh;
        overflow-y: auto;
        margin: 2rem;
        box-shadow: 0 1.25rem 3.125rem rgba(0, 0, 0, 0.3);
        z-index: 10001;
        animation: modalSlideIn 0.3s ease;
    }

    @keyframes modalSlideIn {
        from {
            opacity: 0;
            transform: translateY(-2rem);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .modal-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
        background: var(--color-primary);
        color: white;
        border: none;
        border-radius: 50%;
        font-size: 1.5rem;
        cursor: pointer;
        transition: var(--transition-base);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10002;
    }

    .modal-close:hover {
        background: var(--color-primary-dark);
        transform: rotate(90deg);
    }

    .modal-body {
        padding: 3rem 2.5rem;
    }

    .modal-body h3 {
        font-size: 2rem;
        color: var(--color-primary);
        margin-bottom: 1.5rem;
    }

    .modal-body p {
        color: var(--color-text-light);
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .modal-body ul {
        margin: 1.5rem 0;
        padding-left: 0;
        list-style: none;
    }

    .modal-body ul li {
        padding: 0.5rem 0;
        padding-left: 1.5625rem;
        position: relative;
        color: #495057;
    }

    .modal-body ul li:before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--color-primary);
        font-weight: bold;
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   TABLET LAYOUT (768px - 1023px) - CENTERED CARDS + MODAL
   ========================================================================== */

@media (min-width: 768px) and (max-width: 1023px) {
    .services-final {
        max-width: 48rem; /* 768px - NOT full width */
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .service-final-card {
        background: white;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        border: 1px solid rgba(58, 125, 68, 0.1);
        transition: var(--transition-base);
        margin-bottom: 2rem;
    }

    .service-final-card:hover {
        box-shadow: var(--shadow-lg);
        border-color: var(--color-primary);
    }

    .service-final-card:last-child {
        margin-bottom: 0;
    }

    .service-image-wrapper {
        width: 100%;
        height: 18.75rem; /* 300px */
        overflow: hidden;
    }

    .service-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .service-final-card:hover .service-image-wrapper img {
        transform: scale(1.05);
    }

    .service-content-wrapper {
        padding: 2rem;
    }

    .service-content-wrapper h3 {
        font-size: 1.75rem;
        color: var(--color-primary);
        margin-bottom: 0.75rem;
        font-weight: 700;
    }

    .service-intro {
        font-size: 1rem;
        color: var(--color-text);
        font-weight: 600;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .service-description {
        color: var(--color-text-light);
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .service-quick-list {
        list-style: none;
        padding: 0;
        margin: 0 0 2rem 0;
    }

    .service-quick-list li {
        padding: 0.5rem 0;
        padding-left: 1.75rem;
        position: relative;
        color: var(--color-text-light);
        line-height: 1.6;
    }

    .service-quick-list li:before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--color-primary);
        font-weight: bold;
        font-size: 1.125rem;
    }

    .service-btn-final {
        background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
        color: white;
        border: none;
        padding: 0.875rem 2rem;
        border-radius: 1.5625rem;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition-base);
        font-size: 1rem;
        box-shadow: 0 0.25rem 0.9375rem rgba(58, 125, 68, 0.3);
        width: 100%;
    }

    .service-btn-final:hover {
        transform: translateY(-0.125rem);
        box-shadow: 0 0.375rem 1.25rem rgba(58, 125, 68, 0.4);
    }

    /* Hide expand content on tablet */
    .service-full-content {
        display: none;
    }

    /* Modal Styles (same as desktop) */
    .service-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 10000;
        align-items: center;
        justify-content: center;
    }

    .service-modal.active {
        display: flex;
    }

    .service-modal-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
    }

    .service-modal-content {
        position: relative;
        background: white;
        border-radius: var(--radius-lg);
        max-width: 45rem;
        max-height: 85vh;
        overflow-y: auto;
        margin: 2rem;
        box-shadow: 0 1.25rem 3.125rem rgba(0, 0, 0, 0.3);
        z-index: 10001;
        animation: modalSlideIn 0.3s ease;
    }

    .modal-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
        background: var(--color-primary);
        color: white;
        border: none;
        border-radius: 50%;
        font-size: 1.5rem;
        cursor: pointer;
        transition: var(--transition-base);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10002;
    }

    .modal-close:hover {
        background: var(--color-primary-dark);
        transform: rotate(90deg);
    }

    .modal-body {
        padding: 2.5rem 2rem;
    }

    .modal-body h3 {
        font-size: 1.75rem;
        color: var(--color-primary);
        margin-bottom: 1.5rem;
    }

    .modal-body p {
        color: var(--color-text-light);
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .modal-body ul {
        margin: 1.5rem 0;
        padding-left: 0;
        list-style: none;
    }

    .modal-body ul li {
        padding: 0.5rem 0;
        padding-left: 1.5625rem;
        position: relative;
        color: #495057;
    }

    .modal-body ul li:before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--color-primary);
        font-weight: bold;
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   MOBILE LAYOUT (<768px) - EXPANDABLE CARDS (NO MODAL)
   ========================================================================== */

@media (max-width: 767px) {
    .services {
        padding: 3.75rem 0;
    }

    .services-final {
        padding: 0 1rem;
    }

    /* Show service-description on mobile, but hide the "extra" part */
.service-description {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.service-description-extra {
    display: none; /* Hide extra part on mobile - shows on desktop/tablet */
}

.service-quick-list {
    display: none; /* Hide checkmarks on mobile */
}

    .service-final-card {
        background: white;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        border: 1px solid rgba(58, 125, 68, 0.1);
        transition: var(--transition-base);
        margin-bottom: 1.25rem;
    }

    .service-final-card:hover {
        box-shadow: var(--shadow-lg);
    }

    .service-final-card.expanded {
        box-shadow: var(--shadow-xl);
        border-color: var(--color-primary);
    }

    .service-final-card:last-child {
        margin-bottom: 0;
    }

    .service-image-wrapper {
        width: 100%;
        height: 11.25rem; /* 180px */
        overflow: hidden;
    }

    .service-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .service-final-card:hover .service-image-wrapper img {
        transform: scale(1.05);
    }

    .service-content-wrapper {
        padding: 1.25rem;
    }

    .service-content-wrapper h3 {
        font-size: 1.375rem;
        color: var(--color-primary);
        margin-bottom: 0.625rem;
        font-weight: 700;
    }

    .service-intro {
        font-size: 0.9375rem;
        color: var(--color-text);
        font-weight: 600;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }

    .service-description {
        color: var(--color-text-light);
        line-height: 1.7;
        margin-bottom: 1rem;
        font-size: 0.9375rem;
    }

    .service-quick-list {
        list-style: none;
        padding: 0;
        margin: 0 0 1rem 0;
    }

    .service-quick-list li {
        padding: 0.375rem 0;
        padding-left: 1.5rem;
        position: relative;
        color: var(--color-text-light);
        line-height: 1.6;
        font-size: 0.9375rem;
    }

    .service-quick-list li:before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--color-primary);
        font-weight: bold;
        font-size: 1rem;
    }

    .service-btn-final {
        background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
        color: white;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 1.5625rem;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition-base);
        font-size: 0.9375rem;
        box-shadow: 0 0.25rem 0.9375rem rgba(58, 125, 68, 0.3);
        width: 100%;
        position: relative;
    }

    .service-btn-final:hover {
        transform: translateY(-0.125rem);
        box-shadow: 0 0.375rem 1.25rem rgba(58, 125, 68, 0.4);
    }

    /* Button text change on expand - NO ::before/::after duplication! */
    .service-btn-final span::after {
        content: ' ▼';
        display: inline-block;
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }

    .service-final-card.expanded .service-btn-final span::after {
        transform: rotate(180deg);
    }

    /* Expandable Full Content */
    .service-full-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .service-final-card.expanded .service-full-content {
        max-height: 5000px;
    }

    .service-full-inner {
        padding: 1.25rem;
        border-top: 1px solid rgba(58, 125, 68, 0.1);
    }

    .service-full-inner p {
        color: var(--color-text-light);
        line-height: 1.7;
        margin-bottom: 1rem;
        font-size: 0.9375rem;
    }

    .service-full-inner ul {
        list-style: none;
        padding: 0;
        margin: 1rem 0;
    }

    .service-full-inner ul li {
        padding: 0.375rem 0;
        padding-left: 1.5rem;
        position: relative;
        color: var(--color-text-light);
        line-height: 1.6;
        font-size: 0.9375rem;
    }

    .service-full-inner ul li:before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--color-primary);
        font-weight: bold;
        font-size: 1rem;
    }

    /* Hide modal on mobile */
    .service-modal {
        display: none !important;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .service-image-wrapper {
        height: 10rem; /* 160px */
    }

    .service-content-wrapper h3 {
        font-size: 1.25rem;
    }

    .service-intro,
    .service-description,
    .service-quick-list li,
    .service-full-inner p,
    .service-full-inner ul li {
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   8. ABOUT SECTION
   ========================================================================== */

.about {
    padding: var(--spacing-xxl) 0;
    background: var(--color-bg-gradient);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.125rem;
    align-items: start;
}

.about-text h2 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.about-details-full {
    display: block;
}

.about-intro {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.about-text p {
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-size: 1rem;
}

.about-highlight {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.1rem;
    border-left: 0.25rem solid var(--color-primary);
    background: rgba(58, 125, 68, 0.05);
    padding: 0.875rem 1rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.about-credentials {
    font-weight: 600;
    color: var(--color-primary-dark);
    font-size: 1rem;
    margin-top: 1.5rem;
}

.about-collaboration {
    background: white;
    padding: 1.25rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 1.25rem;
    font-size: 1.0625rem;
    text-align: center;
    border-left: 0.25rem solid var(--color-accent);
}

.about-details-full strong {
    color: #d32f2f;
    font-weight: 700;
}

/* About Image & Stats */
.about-image {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-main-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    max-height: 25rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-box {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 0.125rem solid rgba(58, 125, 68, 0.1);
    transition: var(--transition-base);
}

.stat-box:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.9375rem 2.5rem rgba(58, 125, 68, 0.15);
    border-color: var(--color-primary);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--color-text-light);
    font-weight: 600;
}

/* ==========================================================================
   RESPONSIVE - TABLET
   ========================================================================== */

@media (max-width: 1024px) {
    .about-content {
        gap: 2.5rem;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }

    .about-main-image {
        max-height: 22rem;
    }
}

/* ==========================================================================
   RESPONSIVE - MOBILE
   ========================================================================== */

@media (max-width: 768px) {
    .about {
        padding: 3.75rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .about-main-image {
        max-height: 18.75rem;
        order: -1; /* Slika ide gore */
    }

    .about-image {
        gap: 1.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-box {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-icon {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .about-collaboration {
        font-size: 1rem;
        padding: 1rem;
    }
}

/* ==========================================================================
   RESPONSIVE - SMALL MOBILE
   ========================================================================== */

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .about-main-image {
        max-height: 15.625rem;
    }

    .stat-box {
        padding: 1.25rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-icon {
        font-size: 2rem;
    }
}
/* ==========================================================================
   9. FAQ SECTION
   ========================================================================== */

.faq {
    padding: var(--spacing-xxl) 0;
    background: var(--color-bg-gradient);
}

.faq-container {
    max-width: 50rem;
    margin: 0 auto;
}

/* FAQ Item */
.faq-item {
    background: var(--color-white);
    border-radius: 0.75rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.08);
    border-left: 0.25rem solid var(--color-primary);
    transition: var(--transition-base);
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 0.5rem 1.25rem rgba(58, 125, 68, 0.15);
    transform: translateY(-0.125rem);
}

/* FAQ Question (Button) */
.faq-question {
    width: 100%;
    padding: 1.5rem 1.25rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-base);
}

.faq-question:hover {
    background: rgba(58, 125, 68, 0.03);
}

.faq-question-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    line-height: 1.5;
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(58, 125, 68, 0.1);
    border-radius: 50%;
    transition: var(--transition-base);
}

.chevron {
    transition: transform 0.3s ease;
    color: var(--color-primary);
}

.faq-item.active .chevron {
    transform: rotate(180deg);
}

.faq-item.active .faq-icon {
    background: var(--color-primary);
}

.faq-item.active .faq-icon .chevron {
    color: var(--color-white);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 31.25rem;
}

.faq-answer-content {
    padding: 0 1.25rem 1.5rem 1.25rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.faq-answer-content p {
    margin-bottom: 1rem;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-note {
    font-weight: 600;
    color: var(--color-primary);
    background: rgba(58, 125, 68, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border-left: 0.1875rem solid var(--color-primary);
}

.faq-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: var(--color-text-light);
}

.faq-list li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.faq-list li::marker {
    color: var(--color-primary);
}

/* Tablet */
@media (max-width: 1024px) {
    .faq {
        padding: 4rem 0;
    }

    .faq-container {
        max-width: 45rem;
    }

    .faq-question-text {
        font-size: 1.0625rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .faq {
        padding: 3.75rem 0;
    }

    .faq-container {
        padding: 0 1rem;
    }

    .faq-item {
        margin-bottom: 1rem;
        border-left-width: 0.1875rem;
    }

    .faq-question {
        padding: 1.25rem 1rem;
    }

    .faq-question-text {
        font-size: 1rem;
    }

    .faq-icon {
        width: 1.75rem;
        height: 1.75rem;
    }

    .chevron {
        width: 1.25rem;
        height: 1.25rem;
    }

    .faq-answer-content {
        padding: 0 1rem 1.25rem 1rem;
        font-size: 0.9375rem;
    }

    .faq-note {
        font-size: 0.9375rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .faq-question {
        padding: 1rem 0.875rem;
        gap: 0.75rem;
    }

    .faq-question-text {
        font-size: 0.9375rem;
    }

    .faq-answer-content {
        padding: 0 0.875rem 1rem 0.875rem;
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   10. CONTACT SECTION
   ========================================================================== */

.contact {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.125rem;
}

.contact h2 {
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    font-size: 2rem;
}

.contact p {
    color: var(--color-text-light);
    margin-bottom: 1.875rem;
}

/* Contact Info */
.contact-info {
    background-color: var(--color-bg-light);
    padding: 1.875rem;
    border-radius: var(--radius-md);
    border: 0.125rem solid rgba(58, 125, 68, 0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}



.contact-item-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-right: 0.9375rem;
    width: 1.875rem;
}

.contact-item strong {
    color: var(--color-primary);
}

.contact-item a {
    color: var(--color-primary);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: none;
    color: var(--color-primary-dark);
}

/* Full clickable contact item link */
.contact-item-full-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    margin: -0.75rem;
    width: calc(100% + 1.5rem);
}

.contact-item-full-link:hover {
    background: rgba(58, 125, 68, 0.05);
    transform: translateX(0.5rem);
}

.contact-item-full-link:active {
    background: rgba(58, 125, 68, 0.1);
}

.contact-item-full-link:hover .contact-item-icon {
    transform: scale(1.15);
    transition: transform 0.3s ease;
}

.contact-item-full-link strong {
    color: var(--color-primary);
}

.contact-item-full-link span {
    color: var(--color-primary);
}

.contact-item-full-link:hover strong,
.contact-item-full-link:hover span {
    color: var(--color-primary-dark);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .contact-item-full-link {
        padding: 0.5rem;
        margin: -0.5rem;
        width: calc(100% + 1rem);
    }
}

.contact-address-link {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-address-link:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Google Maps */
.contact-map {
    margin-top: 2rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 0.125rem solid rgba(58, 125, 68, 0.1);
    position: relative;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 25rem;
    border: none;
}

.map-directions {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.875rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    box-shadow: 0 0.25rem 0.625rem rgba(58, 125, 68, 0.3);
    font-size: 0.9375rem;
}

.map-directions:hover {
    background: var(--color-primary-dark);
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 0.9375rem rgba(58, 125, 68, 0.4);
}

.map-directions svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Contact Form */
.contact-form {
    background-color: var(--color-bg-light);
    padding: 1.875rem;
    border-radius: var(--radius-md);
    border: 0.125rem solid rgba(58, 125, 68, 0.1);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.3125rem;
    color: var(--color-primary);
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.625rem;
    border: 0.0625rem solid #ddd;
    border-radius: var(--radius-sm);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0.3125rem rgba(58, 125, 68, 0.3);
}

.submit-button {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.75rem 1.875rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-base);
}

.submit-button:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-0.125rem);
    box-shadow: 0 0.25rem 0.625rem rgba(58, 125, 68, 0.3);
}

/* Mobile */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.875rem;
    }

    .contact-map {
        margin-top: 1.5rem;
        border-radius: 0.5rem;
    }

    .contact-map iframe {
        height: 18.75rem;
    }

    .map-directions {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */

footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 2.5rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    gap: 1.875rem;
}

.footer-section h3 {
    margin-bottom: 0.9375rem;
    color: #6bb872;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.625rem;
    display: block;
    transition: all 0.3s ease;
}

.footer-section a {
    cursor: pointer; /* Pokazuje da je klikabilno */
}

.footer-section a:hover {
    color: var(--color-white);
    transform: translateX(0.25rem); /* Pomera se malo desno */
}

.footer-section a:active {
    color: var(--color-accent); /* Narandžasta boja na klik (opciono) */
}
.footer-map-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-map-link:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.2);
    margin-top: 1.875rem;
    padding-top: 1.25rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile Footer */
@media (max-width: 768px) {
    footer {
        padding: 2rem 0;
    }

    .footer-content {
        gap: 1.5rem;
    }
}