/* Global Picture Element Styling */
picture {
    display: inline-block;
}

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

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9D7651 0%, #7D5D40 50%, #9D7651 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-screen picture {
    display: block;
    width: 150px;
    height: 150px;
}

.loading-logo {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    object-fit: contain;
    animation: logoFloat 3s ease-in-out infinite;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

.loading-text {
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top: 4px solid var(--accent-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        opacity: 1;
    }
    50% { 
        transform: translateY(-15px) scale(1.03); 
        opacity: 0.95;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Potestas Cura Website Styles - Modern Color Scheme */
:root {
    /* Primary colors - More neutral with subtle warmth */
    --primary-color: #2D5A2B;        /* Deep green (professional) */
    --secondary-color: #1E3D1F;      /* Darker green */
    --accent-orange: #E67E22;        /* Warm orange (main accent) */
    --accent-orange-light: #F39C12;  /* Lighter orange variant */
    --accent-orange-dark: #D35400;   /* Darker orange for hover states */
    
    /* Warm Mokka colors for footer */
    --mokka-color: #9D7651;          /* Warm mokka (footer base) */
    --mokka-light: #B8906E;          /* Lighter mokka variant */
    --mokka-dark: #7D5D40;           /* Darker mokka for depth */
    
    /* Neutral colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #ECF0F1;
    --gray: #95A5A6;
    --dark-gray: #7F8C8D;
    --text-dark: #2D5A2B;
    --text-light: #7F8C8D;
    
    /* Subtle green accents (minimal use) */
    --subtle-green: #27AE60;         /* Only for success states */
    --light-green-bg: #F8FDF9;       /* Very subtle background */
    --primary-green: #2D5A2B;        /* Legacy green - being phased out */
    
    /* Shadows and effects */
    --shadow: 0 4px 6px rgba(45, 90, 43, 0.1);
    --shadow-lg: 0 10px 25px rgba(45, 90, 43, 0.15);
    --shadow-xl: 0 20px 40px rgba(45, 90, 43, 0.2);
    --shadow-orange: 0 4px 15px rgba(230, 126, 34, 0.2);
    
    /* Border radius */
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s ease;
    
    /* Updated gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    --gradient-light: linear-gradient(135deg, var(--medium-gray), var(--white));
    --gradient-warm: linear-gradient(135deg, #FDF2E9, var(--white));
    --gradient-mokka: linear-gradient(135deg, var(--mokka-color) 0%, var(--mokka-dark) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -moz-hyphens: none !important;
    -ms-hyphens: none !important;
}

/* GPU Acceleration for smooth performance */
.service-card-modern,
.story-slide,
.slider-btn,
.scroll-top-btn,
.logo-img,
.nav-link,
.btn-primary,
.btn-secondary {
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    hyphens: none;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
}

body.menu-open {
    overflow: hidden;
}

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

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

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

.highlight {
    color: var(--accent-orange);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), #9D7651);
    border-radius: 2px;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--accent-orange-light), var(--accent-orange));
}

.btn-secondary {
    background: var(--gradient-accent);
    color: var(--white);
    border: 2px solid var(--accent-orange);
    box-shadow: var(--shadow-orange);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--accent-orange-light), var(--accent-orange));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: none;
    width: 100%;
    max-width: 100vw;
    overflow: visible;
    box-sizing: border-box;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    padding: 0 2rem;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-right: 2rem;
    flex-shrink: 0;
}

.nav-logo a {
    display: block;
    text-decoration: none;
}

.logo-img {
    width: 160px !important;
    height: 160px !important;
    border-radius: 8px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background: linear-gradient(135deg, #9D7651, #7D5D40);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    line-height: 1;
}

.logo-tagline {
    font-size: 0.5rem;
    color: var(--accent-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        align-items: center;
        gap: 2.5rem;
    }
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent-orange);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Navigation - All devices below 768px */
@media (max-width: 767px) {
    .hamburger {
        display: flex !important;
    }
    
    .nav-menu {
        display: none !important;
    }
}

/* Mobile menu overlay styles */
.mobile-nav-link {
    color: white !important;
    text-decoration: none !important;
    padding: 15px 20px !important;
    width: 100% !important;
    text-align: center !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    display: block !important;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

.mobile-cta {
    background: var(--accent-orange) !important;
    margin: 20px !important;
    border-radius: 8px !important;
    border: none !important;
}


.nav-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    font-size: 1rem;
    line-height: 1.5;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-orange);
}

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

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

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


.dropdown-arrow {
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 4px;
}

.dropdown-arrow:hover {
    background: rgba(45, 90, 43, 0.1);
}

.dropdown-arrow i {
    font-size: 0.8rem;
    transition: var(--transition);
    color: var(--primary-color);
}

.dropdown:hover .dropdown-arrow i,
.dropdown.active .dropdown-arrow i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 1rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    border: 1px solid rgba(45, 90, 43, 0.1);
    z-index: 999999;
    pointer-events: none;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
    pointer-events: auto !important;
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background: var(--light-green);
    color: var(--primary-color);
    border-left-color: var(--accent-orange);
}

.btn-nav {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-orange);
}

.btn-nav:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}



/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(245,248,245,0.85) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
    padding-top: 100px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin: 0;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-image {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

/* Section Wave Dividers - Vloeiende Overgangen */
.section-wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.section-wave-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 85px;
    transform: translateY(-1px);
}

.section-wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 1;
}

.section-wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 85px;
    transform: translateY(-1px);
}

/* Responsive waves */
@media (max-width: 767px) {
    .section-wave-top svg,
    .section-wave-bottom svg {
        height: 45px;
    }
    
    .services {
        padding: 100px 0 80px 0;
    }
    
    .target-groups {
        padding: 100px 0 80px 0;
    }
    
    .values {
        padding: 100px 0 80px 0;
    }
    
    .quality-certifications {
        padding: 100px 0 80px 0;
    }
    
    .success-stories {
        padding: 100px 0;
    }
}

/* Mission Section */
.mission {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    line-height: 1.3;
    font-weight: 700;
}

.mission-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.mission-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}


.stat-item {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(157, 118, 81, 0.1), var(--white));
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid rgba(157, 118, 81, 0.2);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #9D7651;
    background: linear-gradient(135deg, rgba(157, 118, 81, 0.15), var(--white));
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 500;
}


/* Values Section */
.values {
    padding: 150px 0 120px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.values h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.values .section-subtitle {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.value-item {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid rgba(157, 118, 81, 0.3);
    box-shadow: var(--shadow);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: #9D7651;
    background: linear-gradient(135deg, #FFFFFF, #FBF8F5);
}

.value-item i {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    display: block;
}

.value-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.value-item p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Services Section Enhanced */
.services {
    padding: 150px 0 120px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f8f7 50%, #e8f5f3 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(45, 90, 43, 0.03), transparent);
    pointer-events: none;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-header h2 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    line-height: 1.3;
}

.services-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.services-header p {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 400;
}

.services-showcase {
    margin-bottom: 5rem;
}

.service-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 6rem;
    background: transparent;
    min-height: 500px;
    position: relative;
    transition: all 0.4s ease;
}

.service-featured:hover {
    transform: translateY(-5px);
}

.service-featured.reverse {
    direction: rtl;
}

.service-featured.reverse > * {
    direction: ltr;
}

.service-image {
    height: 500px;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(45, 90, 43, 0.15);
    transition: all 0.4s ease;
}

.service-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 60px rgba(45, 90, 43, 0.2);
}

.service-image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.service-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    border-radius: 20px;
}

.service-featured:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: transparent;
    transition: all 0.4s ease;
}

.service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 60px;
    background: linear-gradient(135deg, #9D7651, #7D5D40);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.service-featured:hover .service-content::before {
    height: 80px;
    box-shadow: 0 0 20px rgba(157, 118, 81, 0.4);
}

.service-featured:hover .service-content {
    transform: translateX(10px);
}

.service-badge {
    background: linear-gradient(135deg, #9D7651, #7D5D40);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(157, 118, 81, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.service-featured:hover .service-badge {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(157, 118, 81, 0.4);
}

.service-badge.special {
    background: var(--gradient-accent);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.2);
}

.service-content h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
    position: relative;
    text-shadow: 0 2px 4px rgba(45, 90, 43, 0.1);
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
    transition: all 0.4s ease;
    opacity: 0.9;
}

.service-featured:hover .service-content h3::after {
    width: 120px;
    opacity: 1;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.3);
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--gray);
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: fit-content;
    padding: 0;
    border: none;
    background: transparent;
    position: relative;
}

.btn-service::after {
    content: '→';
    transition: transform 0.3s ease;
    color: var(--accent-orange);
    font-weight: bold;
}

.btn-service:hover {
    color: var(--accent-orange);
    transform: translateX(8px);
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 5px solid #9D7651;
}

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

.service-card .service-icon {
    background: linear-gradient(135deg, #9D7651, #7D5D40);
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(157, 118, 81, 0.3);
}

.service-card h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent-orange);
    transform: translateX(3px);
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem 0;
    background: transparent;
    position: relative;
}

/* Contact Section Enhanced */
.contact {
    padding: 120px 0;
    position: relative;
    color: var(--white);
    min-height: 100vh;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.contact-bg picture {
    display: block;
    width: 100%;
    height: 100%;
}

.contact-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(248, 249, 250, 0.85));
    z-index: 2;
}

.contact .container {
    position: relative;
    z-index: 3;
}

.contact-header h2 {
    color: var(--primary-color);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

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

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

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.75rem 1.3rem;
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(45, 90, 43, 0.12);
    min-width: 0;
    overflow: hidden;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.info-label {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.info-value {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1.55;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    white-space: nowrap;
}

.info-value-multiline {
    white-space: pre-line;
}

.info-item:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(230, 126, 34, 0.25);
    border-color: var(--accent-orange);
}

.info-icon {
    background: transparent;
    color: var(--accent-orange);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    transform: scale(1.1);
    color: var(--accent-orange-dark);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(45, 90, 43, 0.15);
    border: 2px solid var(--primary-color);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.contact-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

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

/* Client Registration Form */
.client-registration {
    padding: 120px 0;
    background: var(--light-gray);
}

/* ===== WIZARD/FORM MOBILE RESPONSIVE ===== */

.wizard-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid rgba(45, 90, 43, 0.1);
}

.wizard-header {
    padding: 30px 20px 25px;
    text-align: center;
    background: linear-gradient(135deg, #9D7651 0%, #7D5D40 100%);
    color: white;
}

.wizard-header h1 {
    font-size: 2rem;
    color: white;
    margin-bottom: 25px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.wizard-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
    flex-wrap: wrap;
}

.step {
    position: relative;
    z-index: 2;
}

.step::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 20px;
    height: 2px;
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%);
    z-index: 1;
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 3;
    border: 2px solid rgba(255,255,255,0.3);
    min-width: 44px;
    min-height: 44px;
}

.step.active .step-number {
    background: var(--accent-orange);
    color: white;
    border-color: var(--accent-orange);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.4);
    transform: scale(1.1);
}

.step.completed .step-number {
    background: rgba(255,255,255,0.9);
    color: var(--primary-color);
    border-color: rgba(255,255,255,0.9);
}

.step.completed .step-number::before {
    content: '✓';
    font-size: 1.1rem;
    font-weight: bold;
}

.step.completed::after {
    background: rgba(255,255,255,0.6);
}

.wizard-content {
    padding: 30px 20px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 400px;
}

.wizard-left {
    max-width: 100%;
    margin: 0 auto;
}

.wizard-step {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.wizard-step.active {
    display: block;
}

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

.step-description {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
    padding: 15px;
    background: rgba(45, 90, 43, 0.05);
    border-left: 4px solid var(--accent-orange);
    border-radius: 0 8px 8px 0;
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.5;
    padding: 10px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    min-height: 44px;
}

.radio-label:hover,
.checkbox-label:hover {
    background: rgba(45, 90, 43, 0.05);
}

.radio-custom {
    width: 24px;
    height: 24px;
    border: 2px solid #ddd;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.radio-label input {
    display: none;
}

.radio-label input:checked + .radio-custom {
    border-color: var(--accent-orange);
}

.radio-label input:checked + .radio-custom::after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--accent-orange);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wizard-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

.btn-orange {
    background: var(--accent-orange);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-orange:hover {
    background: #e67939;
    transform: translateY(-2px);
}

.btn-gray {
    background: #6c757d;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-gray:hover {
    background: #5a6268;
}

/* Mobile wizard optimizations */
@media (max-width: 767px) {
    .wizard-header h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .wizard-steps {
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .step::after {
        width: 15px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .wizard-content {
        padding: 20px 15px 30px;
    }
    
    .step-description {
        font-size: 0.9rem;
        padding: 12px;
    }
    
    .wizard-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-orange,
    .btn-gray {
        width: 100%;
        max-width: 250px;
        padding: 15px 20px;
    }
}

/* File Upload Styling */
.file-upload-area {
    border: 3px dashed #ddd;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    background: #fafafa;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 20px;
}

.file-upload-area:hover {
    border-color: var(--accent-orange);
    background: #fff8f0;
}

.file-upload-area.dragover {
    border-color: var(--primary-color);
    background: #f0f8f0;
}


.file-upload-label {
    cursor: pointer;
    display: block;
}

.upload-icon {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 15px;
}

.upload-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.upload-main {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.upload-sub {
    font-size: 0.9rem;
    color: var(--gray);
}

.file-info {
    margin-top: 15px;
    color: var(--gray);
}

.file-list {
    margin-top: 20px;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.file-name {
    font-weight: 600;
    color: var(--primary-color);
}

.file-size {
    color: var(--gray);
    font-size: 0.9rem;
    margin-left: 10px;
}

.remove-file {
    background: #ff4757;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    transition: all 0.3s ease;
}

.remove-file:hover {
    background: #ff3742;
    transform: scale(1.1);
}

.document-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.doc-example {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(45, 90, 43, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--accent-orange);
}

.doc-example i {
    color: var(--accent-orange);
    font-size: 1.2rem;
}

.doc-example span {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* File upload mobile optimizations */
@media (max-width: 767px) {
    .document-examples {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .file-upload-area {
        padding: 25px 15px;
        margin-bottom: 15px;
    }
    
    .upload-icon {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .upload-main {
        font-size: 1.1rem;
    }
    
    .upload-sub {
        font-size: 0.85rem;
    }
    
    .file-item {
        padding: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .remove-file {
        width: 30px;
        height: 30px;
        align-self: flex-end;
    }
}

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

.registration-header h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.registration-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
}

.registration-form {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.form-section {
    padding: 3rem;
    border-bottom: 1px solid var(--light-gray);
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-section h3 i {
    color: var(--accent-orange);
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--light-green);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group small {
    color: var(--gray);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* File Upload Styling */
.file-upload {
    position: relative;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.file-label:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.file-info {
    margin-top: 1rem;
}

#file-list {
    margin-top: 1rem;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    background: var(--light-green);
    border-radius: var(--border-radius);
    margin-bottom: 0.5rem;
}

/* Checkbox Styling */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    line-height: 1.5;
    color: var(--dark-gray);
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--light-green);
    border-radius: var(--border-radius-sm);
    position: relative;
    transition: var(--transition);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input:checked + .checkmark {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    color: var(--white);
    font-size: 14px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Form Submit */
.form-submit {
    text-align: center;
    padding: 3rem;
    background: var(--light-gray);
}

.form-submit .btn-primary {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.submit-info {
    color: var(--gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-info i {
    color: var(--accent-orange);
}

.btn-primary.large, .btn-secondary.large {
    padding: 16px 24px;
    font-size: 1.1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E9ECEF;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 90, 43, 0.1);
}

/* ===== COMPREHENSIVE RESPONSIVE DESIGN ===== */

/* Mobile First Approach - Base styles for smallest screens */

/* Extra Small Devices (phones, 320px and up) */
@media (max-width: 480px) {
    /* Prevent horizontal overflow */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    body {
        position: relative;
    }
    
    * {
        box-sizing: border-box;
    }
    
    .container {
        padding: 0 16px;
        max-width: 100%;
        width: 100%;
        overflow-x: hidden;
    }
    
    /* Better section spacing for mobile */
    section {
        padding: 50px 0;
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Typography scaling */
    h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.2rem;
        line-height: 1.4;
    }
    
    p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0;
        height: 70px;
        max-width: 100%;
        margin: 0;
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo-img {
        width: 80px !important;
        height: 80px !important;
    }
    
    .logo {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .logo-name {
        font-size: 1rem;
    }
    
    .logo-tagline {
        font-size: 0.55rem;
    }
    
    .nav-logo {
        flex-shrink: 1;
        min-width: 0;
        max-width: calc(100% - 60px);
        margin-left: 0.5rem;
    }
    
    .logo-text {
        overflow: hidden;
        white-space: nowrap;
    }
    
    

    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid rgba(45, 90, 43, 0.1);
        font-size: 1.1rem;
        text-align: center;
    }
    
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-green);
        border-radius: 0;
        margin: 0;
        padding: 0;
    }
    
    .dropdown-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(45, 90, 43, 0.1);
        font-size: 1rem;
    }
    
    .btn-nav {
        margin: 1rem;
        padding: 15px 25px;
        font-size: 1.1rem;
        border-radius: var(--border-radius);
        text-align: center;
    }
    
    /* Hero section */
    .hero {
        min-height: 80vh;
        padding-top: 70px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding-top: 2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    /* Buttons - touch-friendly */
    .btn-primary, .btn-secondary {
        min-width: 44px;
        min-height: 44px;
        padding: 15px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
        display: flex;
        align-items: center;
    }
    
    /* Sections */
    .mission, .values, .services, .target-groups, .process, .trainings, .success-stories, .quality-certifications, .partners, .contact {
        padding: 50px 0;
    }
    
    /* Contact section mobile */
    .contact {
        min-height: 100vh;
        padding: 60px 0;
    }
    
    .contact-bg-image {
        object-position: center center;
        min-height: 100vh;
        width: 100vw;
    }
    
    .contact-bg picture {
        min-height: 100vh;
    }
    
    .contact-overlay {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(248, 249, 250, 0.85));
    }
    
    .contact-header h2 {
        font-size: 1.8rem;
        color: var(--primary-color);
    }
    
    .contact-header p {
        color: var(--text-light);
        font-size: 1rem;
    }
    
    .info-item {
        padding: 1.5rem 1.2rem;
        gap: 0.9rem;
    }
    
    .info-value {
        font-size: 0.88rem;
    }
    
    /* Better section titles on mobile */
    section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    /* Images responsive */
    img {
        max-width: 100%;
        height: auto;
        width: 100%;
        object-fit: cover;
    }
    
    /* Prevent overflow from large elements */
    img, video, iframe, embed, object {
        max-width: 100%;
    }
    
    /* Tables responsive */
    table {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        display: block;
    }
    
    /* Better touch targets */
    a, button {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Grids */
    .mission-content,
    .values-grid,
    .services-grid,
    .target-list,
    .process-steps,
    .training-grid,
    .partners-categories,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Quality section mobile */
    .quality-grid-unified {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .quality-card-unified {
        padding: 2.5rem 2rem !important;
        min-height: auto !important;
        grid-column: span 1 !important;
    }
    
    .quality-icon-unified {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .quality-card-unified h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .quality-card-unified p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    /* Quality info bar mobile */
    .quality-info-bar {
        padding: 1.5rem 1rem;
        gap: 1rem;
        border-radius: 20px;
    }
    
    .quality-info-divider {
        display: none;
    }
    
    .quality-info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .quality-info-item span {
        font-size: 0.85rem;
    }
    
    /* Value items */
    .value-item {
        padding: 1.25rem;
        border-radius: 10px;
        background: var(--white);
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        text-align: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .value-item i {
        font-size: 2rem;
        margin-bottom: 0.8rem;
        display: block;
    }
    
    .value-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .value-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Training cards */
    .training-card {
        padding: 1.25rem;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .training-header {
        margin-bottom: 1rem;
    }
    
    .training-header i {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }
    
    .training-header h3 {
        font-size: 1.15rem;
        margin-bottom: 0.6rem;
    }
    
    .training-body p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .training-features li {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    /* Stories Slider - Mobile responsive handled in main slider CSS */
    
    /* Location cards */
    .location-card {
        padding: 1.25rem;
        border-radius: 10px;
        text-align: center;
        background: var(--white);
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .location-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .location-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .location-card p {
        font-size: 0.9rem;
    }
    
    .service-featured {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .service-content {
        padding: 2rem;
    }
    
    .service-image {
        height: 250px;
        order: -1;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Contact form */
    .contact-form {
        padding: 2rem;
    }
    
    /* Target items */
    /* Homepage process steps - better mobile styling */
    .process .process-steps {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .process .process-step {
        padding: 1.5rem;
        padding-top: 1.75rem;
        border-radius: 12px;
        background: var(--white);
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        position: relative;
    }
    
    .process .process-step .step-number {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin: 0 auto 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .process .process-step .step-icon {
        font-size: 2.2rem;
        margin: 1rem auto 1rem;
    }
    
    .process .process-step h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .process .process-step p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .process .process-step .step-arrow {
        display: none;
    }
    
    .target-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.25rem;
        border-radius: 10px;
        background: var(--white);
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    
    .target-icon {
        font-size: 2rem;
    }
    
    .target-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .target-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Small Devices (landscape phones, 481px to 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .container {
        padding: 0 20px;
    }
    
    /* Typography */
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.7rem;
        line-height: 1.3;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.6;
    }
    
    /* Navigation */
    .nav-container {
        height: 75px;
        padding: 0 1.5rem;
        max-width: none;
        margin: 0;
        width: 100%;
    }
    
    .logo-img {
        width: 90px !important;
        height: 90px !important;
    }
    
    .logo {
        width: 40px;
        height: 40px;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    .nav-menu {
        position: fixed !important;
        top: 75px !important;
        left: -100% !important;
        width: 100% !important;
        height: calc(100vh - 75px) !important;
        background: var(--gradient-primary) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        padding: 20px 0 !important;
        transition: left 0.3s ease !important;
        z-index: 1500 !important;
        display: flex !important;
        gap: 0 !important;
    }
    
    .nav-menu.open {
        left: 0 !important;
    }
    
    /* Buttons */
    .btn-primary, .btn-secondary {
        width: auto;
        max-width: none;
        padding: 12px 24px;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Grids - 2 columns where appropriate */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quality-grid-unified {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 3.5rem;
    }
    
    .quality-card-unified {
        padding: 2.5rem 1.8rem;
    }
    
    .quality-icon-unified {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .quality-card-unified h3 {
        font-size: 1.3rem;
    }
    
    .quality-card-unified p {
        font-size: 0.95rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* iPad Mini and Base iPad (768px - 820px) - Extra Compact */
@media (min-width: 768px) and (max-width: 820px) {
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    /* Navigation - Ultra Compact */
    .navbar {
        height: 80px;
        padding: 0 5px;
    }
    
    .nav-container {
        height: 80px;
        padding: 0 0.5rem;
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
        justify-content: space-between;
        display: flex;
        align-items: center;
    }
    
    .logo-img {
        max-width: 100px;
        height: auto;
    }
    
    .nav-logo {
        flex-shrink: 0;
        margin-right: 0.3rem;
    }
    
    .hamburger {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        flex-direction: row !important;
        gap: 0.3rem !important;
        padding: 0 !important;
        transform: none !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        left: auto !important;
        top: auto !important;
        z-index: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }
    
    .nav-link {
        padding: 0.4rem 0.25rem;
        border-bottom: none;
        font-size: 0.75rem;
        white-space: nowrap;
        font-weight: 500;
    }
    
    .dropdown {
        position: relative;
    }
    
    .dropdown-menu {
        position: absolute;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        background: var(--white);
        box-shadow: var(--shadow-lg);
        border-radius: var(--border-radius);
        padding: 1rem 0;
        min-width: 200px;
        top: 100%;
        left: 0;
        z-index: 1000;
    }
    
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown-arrow {
        display: inline-block;
        margin-left: 0.15rem;
        font-size: 0.65rem;
    }
    
    .dropdown-main {
        font-size: 0.75rem;
    }
    
    .btn-nav {
        margin: 0;
        padding: 7px 8px;
        font-size: 0.65rem;
        white-space: nowrap;
        max-width: fit-content;
    }
    
    /* Grids */
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .target-list {
        gap: 1.5rem;
    }
    
    .target-item {
        padding: 1.8rem;
        flex-direction: row;
        text-align: left;
    }
}

/* iPad Air and iPad Pro 11" (821px - 900px) - Compact */
@media (min-width: 821px) and (max-width: 900px) {
    .container {
        padding: 0 25px;
        max-width: 95%;
    }
    
    /* Navigation */
    .navbar {
        height: 85px;
        padding: 0 8px;
    }
    
    .nav-container {
        height: 85px;
        padding: 0 0.8rem;
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
        justify-content: space-between;
        display: flex;
        align-items: center;
    }
    
    .logo-img {
        max-width: 115px;
        height: auto;
    }
    
    .nav-logo {
        flex-shrink: 0;
        margin-right: 0.4rem;
    }
    
    .hamburger {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        flex-direction: row !important;
        gap: 0.5rem !important;
        padding: 0 !important;
        transform: none !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        left: auto !important;
        top: auto !important;
        z-index: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }
    
    .nav-link {
        padding: 0.5rem 0.35rem;
        border-bottom: none;
        font-size: 0.8rem;
        white-space: nowrap;
        font-weight: 500;
    }
    
    .dropdown {
        position: relative;
    }
    
    .dropdown-menu {
        position: absolute;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        background: var(--white);
        box-shadow: var(--shadow-lg);
        border-radius: var(--border-radius);
        padding: 1rem 0;
        min-width: 210px;
        top: 100%;
        left: 0;
        z-index: 1000;
    }
    
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown-arrow {
        display: inline-block;
        margin-left: 0.2rem;
        font-size: 0.7rem;
    }
    
    .dropdown-main {
        font-size: 0.8rem;
    }
    
    .btn-nav {
        margin: 0;
        padding: 8px 10px;
        font-size: 0.7rem;
        white-space: nowrap;
        max-width: fit-content;
    }
    
    /* Grids */
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.3rem;
    }
    
    .target-list {
        gap: 1.5rem;
    }
    
    .target-item {
        padding: 2rem;
        flex-direction: row;
        text-align: left;
    }
}

/* Medium Devices (tablets, 901px to 1023px) */
@media (min-width: 901px) and (max-width: 1023px) {
    .container {
        padding: 0 30px;
        max-width: 95%;
    }
    
    /* Navigation */
    .navbar {
        height: 85px;
        padding: 0 10px;
    }
    
    .nav-container {
        height: 85px;
        padding: 0 1rem;
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
        justify-content: space-between;
        display: flex;
        align-items: center;
    }
    
    .logo-img {
        max-width: 120px;
        height: auto;
    }
    
    .nav-logo {
        flex-shrink: 0;
        margin-right: 0.5rem;
    }
    
    .hamburger {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        flex-direction: row !important;
        gap: 0.6rem !important;
        padding: 0 !important;
        transform: none !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        left: auto !important;
        top: auto !important;
        z-index: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }
    
    
    .nav-link {
        padding: 0.5rem 0.4rem;
        border-bottom: none;
        font-size: 0.85rem;
        white-space: nowrap;
        font-weight: 500;
    }
    
    .dropdown {
        position: relative;
    }
    
    .dropdown-menu {
        position: absolute;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        background: var(--white);
        box-shadow: var(--shadow-lg);
        border-radius: var(--border-radius);
        padding: 1rem 0;
        min-width: 220px;
        top: 100%;
        left: 0;
        z-index: 1000;
    }
    
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown-arrow {
        display: inline-block;
        margin-left: 0.2rem;
        font-size: 0.75rem;
    }
    
    .dropdown-main {
        font-size: 0.85rem;
    }
    
    .btn-nav {
        margin: 0;
        padding: 9px 12px;
        font-size: 0.75rem;
        white-space: nowrap;
        max-width: fit-content;
    }
    
    /* Hero */
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        text-align: left;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        line-height: 1.6;
}
    
    /* Sections */
    .mission, .values, .services, .target-groups, .process, .trainings, .success-stories, .quality-certifications, .partners, .contact {
        padding: 80px 0;
    }
    
    /* Contact section tablet */
    .contact {
        min-height: 100vh;
        padding: 80px 0;
    }
    
    .contact-bg-image {
        object-position: center center;
        min-height: 100vh;
    }
    
    .contact-overlay {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(248, 249, 250, 0.85));
    }
    
    /* Grids */
    .mission-content {
        grid-template-columns: 2fr 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .service-card-modern {
        margin-bottom: 0;
    }
    
    .service-featured {
        grid-template-columns: 1fr 1fr;
    }
    
    .training-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Target Groups */
    .target-list {
        gap: 1.5rem;
    }
    
    .target-item {
        padding: 2rem;
        flex-direction: row;
        text-align: left;
    }
    
    .target-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        flex-shrink: 0;
    }
    
    .target-content h3 {
        font-size: 1.3rem;
    }
    
    .quality-grid-unified {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 4rem;
    }
    
    .quality-card-unified {
        padding: 2.5rem 1.5rem;
    }
    
    .quality-icon-unified {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .quality-card-unified h3 {
        font-size: 1.25rem;
    }
    
    .quality-card-unified p {
        font-size: 0.93rem;
    }
    
    .partners-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
        text-align: left;
    }
}

/* iPad Pro and Large Tablets (1024px to 1366px) */
@media (min-width: 1024px) and (max-width: 1366px) {
    /* Container optimizations for iPad Pro */
    .container {
        max-width: 95%;
        padding: 0 40px;
    }
    
    /* Navigation optimizations for iPad Pro - ensure all items are visible */
    .nav-container {
        max-width: 100%;
        padding: 0 20px;
        height: 90px;
    }
    
    .nav-logo {
        margin-right: 1rem;
    }
    
    .logo-img {
        width: 140px !important;
        height: 140px !important;
    }
    
    .nav-menu {
        display: flex !important;
        align-items: center;
        gap: 1rem !important;
        flex-wrap: nowrap;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
        white-space: nowrap;
    }
    
    .dropdown {
        gap: 0.3rem;
    }
    
    .btn-nav {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    /* Hide hamburger menu on iPad Pro */
    .hamburger {
        display: none !important;
    }
    
    /* Hero section optimization */
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        max-width: 95%;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    /* Mission section */
    .mission-content {
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }
    
    /* Values grid - 5 columns for better use of space */
    .values-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
    }
    
    /* Services grid - 3 columns */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    /* Service featured sections */
    .service-featured {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .service-image {
        height: 550px;
    }
    
    /* Training grid */
    .training-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    /* Contact section */
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    /* Partners */
    .partners-categories {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    /* Process steps */
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    /* Quality certifications */
    .quality-grid-unified {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    /* Target groups */
    .target-groups-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    /* Trainings */
    .training-categories {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    /* Story slider */
    .stories-slider {
        max-width: 95%;
    }
    
    /* Footer optimization */
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
        gap: 2.5rem;
    }
}

/* Large Devices (desktops, 1367px to 1199px) */
@media (min-width: 1367px) and (max-width: 1199px) {
    .values-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .training-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .partners-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .training-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .partners-categories {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Target Groups Section */
.target-groups {
    padding: 150px 0 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.target-groups h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.4rem;
    line-height: 1.3;
    color: var(--primary-color);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 4rem;
    line-height: 1.6;
}

.target-list {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.target-item {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: var(--transition);
    border-left: 5px solid var(--primary-green);
}

.target-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.target-icon {
    font-size: 3rem;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
}

.target-icon i {
    transition: transform 0.4s ease;
}

.target-item:hover .target-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
    background: var(--gradient-accent);
}

.target-item:hover .target-icon i {
    transform: scale(1.1);
}

.target-content h3 {
    color: var(--primary-green);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Process Section */
.process {
    padding: 120px 0;
    background: linear-gradient(135deg, #f0f8f7 0%, #e8f5f3 50%, #f8fffe 100%);
    position: relative;
}

.process h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 700;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    background: var(--white);
    border: 2px solid rgba(45, 90, 43, 0.1);
    border-radius: 16px;
    padding: 2rem 1rem;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.4s ease;
    width: 100%;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(45, 90, 61, 0.2);
    border-color: var(--accent-orange);
}

.process-step .step-number {
    background: var(--gradient-primary);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s ease;
    z-index: 2;
}

.process-step:hover .step-number {
    transform: translateX(-50%) scale(1.15);
    background: var(--gradient-accent);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin: 2rem auto 1rem;
    transition: all 0.4s ease;
}

.step-icon i {
    transition: transform 0.4s ease;
}

.process-step:hover .step-icon {
    color: var(--primary-color);
}

.process-step:hover .step-icon i {
    transform: scale(1.15) rotate(5deg);
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.15rem;
    line-height: 1.3;
    font-weight: 700;
    transition: color 0.3s ease;
}

.process-step:hover h3 {
    color: var(--accent-orange);
}

.process-step p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.9rem;
}

.step-arrow {
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent-orange);
    opacity: 0.6;
    transition: all 0.3s ease;
    z-index: 1;
}

.process-step:last-child .step-arrow {
    display: none;
}

.process-step:hover .step-arrow {
    opacity: 1;
    right: -1.3rem;
}

/* Trainings Section */
.trainings {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.trainings h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.2rem;
    line-height: 1.3;
}

.trainings .section-subtitle {
    margin-bottom: 4rem;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.training-card {
    background: var(--light-gray);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.training-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.training-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.training-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.training-header h3 {
    font-size: 1.4rem;
    margin: 0;
}

.training-body {
    padding: 2rem;
}

.training-body p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.training-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.training-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--gray);
}

.training-features li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Success Stories Section - Luxury Slider */
.success-stories {
    padding: 150px 0;
    background: linear-gradient(135deg, #f8faf9 0%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
}

.success-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="%232D5A2B" opacity="0.05"/></svg>');
    background-size: 50px 50px;
    pointer-events: none;
}

.success-stories h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    line-height: 1.3;
    position: relative;
}

/* Slider Wrapper */
.stories-slider-wrapper {
    position: relative;
    margin-top: 4rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.stories-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(45, 90, 43, 0.15);
}

/* Story Slide */
.story-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.story-slide.active {
    display: block;
    opacity: 1;
    animation: slideIn 0.6s ease-in-out;
}

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

/* Story Card Slider */
.story-card-slider {
    display: grid;
    grid-template-columns: 45% 55%;
    background: var(--white);
    min-height: 600px;
    position: relative;
}

.story-image-slider {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.story-image-slider picture {
    display: block;
    width: 100%;
    height: 100%;
}

.story-image-slider img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-slide.active .story-image-slider img {
    animation: zoomIn 0.8s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 90, 43, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    pointer-events: none;
}

/* Story Content Slider */
.story-content-slider {
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.story-badge {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(45, 90, 43, 0.3);
}

.story-badge.special {
    background: var(--gradient-accent);
}

.story-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
}

.story-age,
.story-duration {
    color: var(--gray);
    padding: 4px 12px;
    background: rgba(45, 90, 43, 0.08);
    border-radius: 12px;
    font-weight: 500;
}

.story-content-slider h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-text {
    margin-bottom: 2rem;
}

.story-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Story Quote - Luxe Design */
.story-quote {
    background: linear-gradient(135deg, rgba(45, 90, 43, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-left: 4px solid var(--accent-orange);
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    border-radius: 0 12px 12px 0;
    margin-bottom: 2rem;
    position: relative;
}

.story-quote .fa-quote-left {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.5rem;
    color: var(--accent-orange);
    opacity: 0.3;
}

.story-quote p {
    font-style: italic;
    color: var(--primary-color);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 0.5rem 1.5rem;
    font-weight: 500;
}

.quote-author {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 600;
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

/* Story Achievements */
.story-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(45, 90, 43, 0.08);
    padding: 0.6rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.achievement-item i {
    color: var(--accent-orange);
    font-size: 1rem;
}

.achievement-item:hover {
    background: rgba(45, 90, 43, 0.15);
    transform: translateY(-2px);
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(45, 90, 43, 0.3);
}

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

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

.slider-btn i {
    font-size: 1.2rem;
    color: var(--primary-green);
    transition: color 0.3s ease;
}

.slider-btn:hover i {
    color: var(--white);
}

/* Slider Indicators */
.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2.5rem;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-indicator:hover {
    background: rgba(45, 90, 43, 0.3);
    transform: scale(1.2);
}

.slider-indicator.active {
    background: var(--primary-green);
    width: 35px;
    border-radius: 6px;
}

/* iPad Pro Success Stories Optimization (1024px - 1366px) */
@media (min-width: 1024px) and (max-width: 1366px) {
    .success-stories {
        padding: 100px 0;
    }
    
    .success-stories .container {
        max-width: 95%;
        padding: 0 40px;
    }
    
    .stories-slider-wrapper {
        max-width: 95%;
        padding: 0 60px;
    }
    
    .story-slide {
        padding: 3.5rem 3rem;
    }
    
    .story-content h3 {
        font-size: 1.8rem;
    }
    
    .story-content p {
        font-size: 1.1rem;
        line-height: 1.8;
    }
    
    .slider-btn-prev {
        left: 10px;
    }
    
    .slider-btn-next {
        right: 10px;
    }
}

/* Responsive Design - Tablet */
@media (max-width: 968px) {
    .stories-slider-wrapper {
        max-width: 100%;
        margin-top: 3rem;
    }
    
    .stories-slider {
        border-radius: 15px;
    }
    
    .story-card-slider {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .story-image-slider {
        height: 300px;
        order: 1;
    }
    
    .story-image-slider img {
        object-position: center 25%;
    }
    
    .story-content-slider {
        padding: 2.5rem 2rem;
        order: 2;
    }
    
    .story-content-slider h3 {
        font-size: 1.6rem;
    }
    
    .story-text p {
        font-size: 0.9rem;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
    }
    
    .slider-btn i {
        font-size: 1.1rem;
    }
    
    .slider-btn-prev {
        left: 10px;
        top: 35%;
    }
    
    .slider-btn-next {
        right: 10px;
        top: 35%;
    }
    
    .story-achievements {
        gap: 0.8rem;
    }
    
    .achievement-item {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 640px) {
    .success-stories {
        padding: 60px 0;
    }
    
    .success-stories h2 {
        font-size: 1.6rem;
        padding: 0 1rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .stories-slider-wrapper {
        margin-top: 2rem;
        padding: 0 0.5rem;
    }
    
    .stories-slider {
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(45, 90, 43, 0.12);
    }
    
    .story-image-slider {
        height: 250px;
    }
    
    .story-image-slider img {
        object-position: center 25%;
    }
    
    .story-content-slider {
        padding: 1.5rem 1.25rem;
    }
    
    .story-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .story-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    
    .story-meta {
        gap: 0.6rem;
        font-size: 0.75rem;
    }
    
    .story-age,
    .story-duration {
        padding: 3px 10px;
        font-size: 0.75rem;
    }
    
    .story-content-slider h3 {
        font-size: 1.3rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .story-text {
        margin-bottom: 1.5rem;
    }
    
    .story-text p {
        font-size: 0.85rem;
        line-height: 1.7;
        margin-bottom: 0.8rem;
    }
    
    .story-quote {
        padding: 1rem 1rem 1rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .story-quote .fa-quote-left {
        font-size: 1.2rem;
        top: 0.8rem;
        left: 0.8rem;
    }
    
    .story-quote p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-left: 1rem;
    }
    
    .quote-author {
        font-size: 0.8rem;
        margin-left: 1rem;
    }
    
    .story-achievements {
        flex-direction: column;
        gap: 0.7rem;
    }
    
    .achievement-item {
        width: 100%;
        font-size: 0.8rem;
        padding: 0.5rem 0.9rem;
        justify-content: flex-start;
    }
    
    .achievement-item i {
        font-size: 0.9rem;
    }
    
    /* Slider controls - hidden on mobile */
    .slider-btn {
        display: none;
    }
    
    /* Slider indicators - mobile optimized */
    .slider-indicators {
        margin-top: 1.5rem;
        gap: 10px;
    }
    
    .slider-indicator {
        width: 10px;
        height: 10px;
    }
    
    .slider-indicator.active {
        width: 28px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .success-stories {
        padding: 50px 0;
    }
    
    .success-stories h2 {
        font-size: 1.4rem;
    }
    
    .story-image-slider {
        height: 220px;
    }
    
    .story-image-slider img {
        object-position: center 25%;
    }
    
    .story-content-slider {
        padding: 1.25rem 1rem;
    }
    
    .story-content-slider h3 {
        font-size: 1.15rem;
    }
    
    .story-text p {
        font-size: 0.8rem;
    }
    
    .story-quote p {
        font-size: 0.85rem;
    }
    
    .slider-btn {
        display: none;
    }
    
    .achievement-item {
        font-size: 0.75rem;
        padding: 0.45rem 0.8rem;
    }
}

/* Quality & Certifications Section - Unified Layout */
.quality-certifications {
    padding: 150px 0 120px 0;
    background: var(--light-green);
    position: relative;
    overflow: hidden;
}

.quality-certifications h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.2rem;
    line-height: 1.3;
}

.quality-grid-unified {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.quality-card-unified {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-green);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 300px;
}

.quality-card-unified::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.quality-card-unified:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.quality-card-unified:hover::before {
    transform: scaleX(1);
}

.quality-icon-unified {
    background: var(--gradient-primary);
    color: var(--white);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.6rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    flex-shrink: 0;
}

.quality-card-unified:hover .quality-icon-unified {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent-orange);
}

.quality-card-unified h3 {
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
}

.quality-card-unified p {
    color: var(--gray);
    line-height: 1.65;
    font-size: 0.92rem;
    text-align: center;
}

/* Quality Info Bar - Single Line */
.quality-info-bar {
    margin-top: 4rem;
    padding: 2rem 3rem;
    background: var(--white);
    border-radius: 60px;
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.quality-info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.quality-info-item i {
    color: var(--accent-orange);
    font-size: 1.4rem;
}

.quality-info-item span {
    color: var(--primary-color);
    font-size: 1rem;
    white-space: nowrap;
}

.quality-info-item strong {
    color: var(--primary-green);
    margin-right: 0.3rem;
}

.quality-info-divider {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, var(--primary-green), transparent);
}

/* Partners Section */
.partners {
    padding: 120px 0;
    background: var(--white);
}

.partners h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.2rem;
    line-height: 1.3;
}

.partners-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.partner-category {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.partner-category:hover {
    background: var(--white);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    background: var(--gradient-accent);
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    box-shadow: var(--shadow);
}

.partner-category h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.partner-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.partner-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    transition: var(--transition);
    color: var(--gray);
}

.partner-list li:hover {
    background: var(--light-green);
    transform: translateX(5px);
}

.partner-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Additional Elements */
.btn-primary i, .btn-secondary i {
    margin-right: 0.5rem;
}

.footer-certifications {
    margin-top: 1.5rem;
}

.cert-logos {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.cert-item {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-orange);
    padding: 8px 12px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 500;
}

.legal-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--medium-gray);
}

.legal-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.85rem 1.8rem;
    border-radius: 12px;
    background: var(--gradient-accent);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.25);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-links a:hover {
    background: linear-gradient(135deg, var(--accent-orange-light), var(--accent-orange));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

/* Animation for scroll */
.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Performance optimizations */
.hero-bg-image, .contact-bg-image {
    will-change: transform;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #9D7651 0%, #8B6A49 50%, #7D5D40 100%);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: auto;
    position: relative;
    box-shadow: 0 -10px 40px rgba(157, 118, 81, 0.15);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-content > .footer-section:not(:first-child) {
    padding-top: 0;
}

.footer-section {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.footer-section:first-child {
    padding-top: 0;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin: 0 0 1.5rem 0;
    padding: 0 0 0.5rem 0;
    border-bottom: 3px solid var(--accent-orange);
    display: block;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    width: 100%;
    line-height: 1.2;
    min-height: 1.44rem;
    white-space: nowrap;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-section ul li a:hover {
    color: #F5E6D3;
    transform: translateX(5px);
    text-shadow: 0 2px 8px rgba(245, 230, 211, 0.4);
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
}

.footer-logo picture {
    display: block;
    width: 320px;
    height: 320px;
    margin: 0;
    padding: 0;
}

.footer-logo-img {
    width: 320px;
    height: 320px;
    border-radius: 12px;
    object-fit: contain;
    filter: brightness(1.1);
    margin: 0;
    padding: 0;
    display: block;
}

.footer-logo .logo-pc {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7D5D40, #654B33);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-logo .logo-text {
    display: none;
}

.footer-logo .logo-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.footer-logo .logo-tagline {
    font-size: 0.75rem;
    color: #F5E6D3;
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-certifications {
    margin-top: 1.5rem;
}

.footer-certifications p {
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--white);
}

.cert-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.cert-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.08));
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    color: #F5E6D3;
    border: 1px solid rgba(255,255,255,0.25);
    transition: var(--transition);
}

.cert-item:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.15));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-details p {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin: 0;
    color: var(--primary-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer contact details should be white on dark background */
.footer .contact-details p {
    color: var(--white);
}

.contact-details i {
    color: #F5E6D3;
    width: 20px;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.footer-bottom {
    border-top: 2px solid var(--accent-orange);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

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

.footer-social a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.08));
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-social a:hover {
    background: linear-gradient(135deg, #F5E6D3, #E6D4BD);
    color: #7D5D40;
    border-color: #F5E6D3;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 230, 211, 0.4);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Partner Logos Section */
.footer-logos {
    grid-column: span 2;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 2rem;
    justify-items: center;
}

.partner-logos picture {
    display: block;
    height: 90px;
    width: auto;
}

.partner-logo {
    height: 80px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.2);
    transition: var(--transition);
}

.partner-logo:hover {
    transform: translateY(-3px);
    filter: brightness(1.4) contrast(1.3);
}

/* Newsletter Form Styles */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.newsletter-form input[type="email"] {
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition);
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: rgba(255,255,255,0.15);
}

.newsletter-form .btn-secondary {
    background: linear-gradient(135deg, #F5E6D3, #E6D4BD);
    color: #7D5D40;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(245, 230, 211, 0.3);
}

.newsletter-form .btn-secondary:hover {
    background: linear-gradient(135deg, #FFE4C4, #F5E6D3);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(245, 230, 211, 0.5);
}

/* Mobile Footer Styles */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: left;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-logo {
        justify-content: flex-start;
        margin-bottom: 1rem;
    }
    
    .footer-logo picture {
        width: 160px;
        height: 160px;
    }
    
    .footer-logo-img {
        width: 160px;
        height: 160px;
    }
    
    .footer-logo .logo-pc {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .footer-logo .logo-name {
        font-size: 1.5rem;
    }
    
    .footer-logo .logo-tagline {
        font-size: 0.7rem;
    }
    
    .cert-logos {
        justify-content: flex-start;
    }
    
    .cert-item {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-social a {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .footer-social a {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    /* Mobile Partner Logos */
    .footer-logos {
        grid-column: span 1;
    }
    
    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .partner-logo {
        height: 70px;
        max-width: 150px;
    }
}

/* General text wrapping for all service content */
.service-content * {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: none;
}

/* Ensure container has proper overflow handling */
.container {
    width: 100%;
    max-width: 1200px;
}

/* Additional mobile text optimization */
@media (max-width: 767px) {
    .service-content {
        overflow-x: hidden;
    }
    
    .service-content h1,
    .service-content h2,
    .service-content h3,
    .service-content h4,
    .service-content h5,
    .service-content h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: none;
        line-height: 1.4;
    }
    
    .service-content p,
    .service-content li {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: none;
        line-height: 1.6;
    }
    
    .service-content ul,
    .service-content ol {
        padding-left: 1.2rem;
        margin-left: 0;
    }
    
    /* Prevent horizontal overflow on all text elements */
    .service-intro,
    .service-details,
    .benefit-card,
    .process-step,
    .methodology-item,
    .info-item,
    .contact-card,
    .related-services,
    .info-box {
        max-width: 100%;
        overflow-x: hidden;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* ===== ENHANCED MOBILE OPTIMIZATIONS ===== */

/* Touch-friendly interactive elements */
.btn-primary, .btn-secondary, .btn-nav, .nav-link, .dropdown-link {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 140, 66, 0.2);
}

/* Improve text readability on mobile */
body {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Mobile-specific focus states */
@media (max-width: 767px) {
    .nav-link:active,
    .btn-primary:active,
    .btn-secondary:active {
        background-color: rgba(255, 140, 66, 0.1);
        transform: scale(0.98);
    }
    
    /* Prevent zoom on input focus */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px !important;
    }
    
    /* Optimize images for mobile */
    img {
        max-width: 100%;
        height: auto;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* Smooth scrolling optimization */
    * {
        -webkit-overflow-scrolling: touch;
    }
}

/* Service Pages Styling */
.service-hero {
    padding: 120px 0 80px;
    background: var(--gradient-warm);
    position: relative;
}

.service-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent-orange);
}

.breadcrumb span {
    color: var(--gray);
}

.service-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.service-content {
    padding: 80px 0;
    background: var(--white);
}

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

.service-text {
    background: var(--white);
}

.service-intro {
    margin-bottom: 0.5rem;
    padding-bottom: 0;
}

.service-intro h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-intro p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0.8rem;
}

.service-intro p:last-child {
    margin-bottom: 0;
}

.service-details h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

.service-details h3:first-of-type {
    margin-top: 1rem;
}

.service-details p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0.8rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-list li {
    position: relative;
    padding: 0.8rem 0 0.8rem 2rem;
    margin-bottom: 0.5rem;
    background: var(--light-green);
    border-radius: var(--border-radius);
    color: var(--gray);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0.8rem;
    color: var(--primary-color);
    font-weight: bold;
}

.service-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--light-green);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-orange);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-card h4 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.benefit-card h4 a:hover {
    color: var(--accent-orange);
}

.benefit-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.methodology-list, .amv-services, .advantages-list, .facilities-list, .expertise-areas {
    margin: 2rem 0;
}

.methodology-item, .amv-service-item, .advantage-item, .facility-item, .expertise-item {
    background: var(--light-green);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-orange);
}

.methodology-item h4, .amv-service-item h4, .expertise-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.methodology-item p, .amv-service-item p, .advantage-item p, .facility-item p, .expertise-item p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.advantage-item, .facility-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
}

.advantage-item i, .facility-item i {
    color: var(--accent-orange);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card, .related-services, .info-box {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 2px solid var(--light-green);
}

/* Groene contact-card styling - Zelfde kleur als info-box */
.contact-card {
    background: var(--primary-color) !important;
    border: 2px solid var(--accent-orange) !important;
    color: white !important;
    padding: 2rem !important;
    border-radius: var(--border-radius-lg) !important;
    box-shadow: var(--shadow) !important;
}

.contact-card h3 {
    color: white !important;
    margin-bottom: 1.5rem !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.6 !important;
}

.contact-card .contact-info p {
    color: white !important;
    margin-bottom: 0.8rem !important;
}

.contact-card .contact-info i {
    color: #E67E22 !important;
    margin-right: 8px !important;
}

.contact-card .btn-primary {
    background: #E67E22 !important;
    border-color: #E67E22 !important;
    color: white !important;
}

.contact-card .btn-primary:hover {
    background: #D35400 !important;
    border-color: #D35400 !important;
    transform: translateY(-2px) !important;
}

.related-services h3, .info-box h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

/* Additional Service Page Styles */
.service-info, .challenges-section, .partners-amv, .results-section, .legal-framework, .cost-info, .team-expertise {
    margin: 2rem 0;
}

.info-item, .challenge-item, .partner-item, .cost-item {
    background: var(--light-green);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-orange);
}

.info-item h4, .challenge-item h4, .partner-item h4, .cost-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.info-item p, .challenge-item p, .partner-item p, .cost-item p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.info-item i, .challenge-item i, .cost-item i {
    color: var(--accent-orange);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.results-list {
    list-style: none;
    padding: 0;
}

.results-list li {
    background: var(--white);
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-green);
    box-shadow: var(--shadow);
}

.legal-item, .partner-item {
    border-left: 4px solid var(--primary-green);
}

.legal-item h4, .partner-item h4 {
    color: var(--primary-color);
}

.info-box p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-info {
    margin: 1.5rem 0;
}


.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0.5rem 0;
    color: var(--primary-color);
}

.contact-info i {
    color: var(--accent-orange);
    width: 20px;
}

.related-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-services ul li {
    margin-bottom: 0.8rem;
}

.related-services ul li a {
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.related-services ul li a::before {
    content: '→';
    color: var(--accent-orange);
    font-weight: bold;
}

.related-services ul li a:hover {
    background: var(--light-green);
    transform: translateX(5px);
}

/* Training page styles */
.service-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.benefit-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.contact-method h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-method p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.affiliations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.affiliation-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.affiliation-item p {
    margin: 0;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.youth-training-section {
    margin: 50px 0 30px 0;
    padding: 30px 0 0 0;
}

.youth-training-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.youth-training-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.youth-training-section li {
    margin-bottom: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.youth-training-section li:last-child {
    border-bottom: none;
}

.youth-training-section li strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}

.training-image-section {
    margin: 50px 0;
    text-align: center;
}

.training-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.training-description {
    margin-top: 20px;
    font-style: italic;
    color: #666;
}

.training-contact {
    margin: 40px 0;
}

/* Conflicterende contact-card regel verwijderd - groene styling heeft voorrang */

.contact-header h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.phone-number {
    font-size: 2rem;
    font-weight: bold;
    margin: 15px 0;
}

.contact-description {
    opacity: 0.9;
    line-height: 1.6;
}

.training-registration {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
}

.training-registration h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.registration-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.registration-method {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.registration-method i {
    font-size: 1.5rem;
    color: var(--accent-orange);
    width: 30px;
    text-align: center;
}

.registration-method strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.training-benefits {
    margin-top: 40px;
}

.training-benefits h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 10px 0;
}

.benefits-list i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.info-box {
    background: var(--primary-color);
    border-color: var(--accent-orange);
}

.info-box h3 {
    color: white !important;
}

.info-box p {
    color: white !important;
}

.info-box strong {
    color: white;
}

.info-box a {
    color: white !important;
    text-decoration: underline;
}

.info-box a:hover {
    color: var(--accent-orange) !important;
}

.info-box .info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box .info-list li {
    color: white;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-box .info-list li i {
    color: var(--accent-orange);
}

.info-box .info-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box .info-links li {
    margin-bottom: 0.5rem;
}

.info-box .info-links a {
    color: white !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.info-box .info-links a:hover {
    color: var(--accent-orange) !important;
    padding-left: 0.5rem;
}

.info-box .info-links a i {
    color: var(--accent-orange);
}

/* ===== MODERN SERVICES SECTION (HOMEPAGE) ===== */
.services-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.services-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(157, 118, 81, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-modern::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-header-modern {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 1;
}

.services-header-modern h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.services-header-modern p {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.8;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.service-card-modern {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(157, 118, 81, 0.15);
    position: relative;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9D7651, var(--accent-orange), #9D7651);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.service-card-modern:hover::before {
    opacity: 1;
}

.service-card-modern:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(157, 118, 81, 0.18);
    border-color: rgba(157, 118, 81, 0.3);
}

.service-card-modern.featured {
    border: 2px solid var(--accent-orange);
    box-shadow: 0 10px 40px rgba(230, 126, 34, 0.15);
}

.service-card-modern.featured:hover {
    box-shadow: 0 20px 60px rgba(230, 126, 34, 0.25);
}

.service-card-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.service-card-image picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transition: transform 0.6s ease;
    display: block;
}

.service-card-image img.forensic-image {
    object-position: 35% center;
}

.service-card-modern:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-modern:hover .service-card-image img.forensic-image {
    transform: translateY(-10%) scale(1.08);
}

.service-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3) 60%, transparent);
    padding: 2rem 1.5rem 1.5rem;
    display: flex;
    align-items: flex-end;
    transition: all 0.4s ease;
}

.service-card-modern:hover .service-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.2) 60%, transparent);
}

.service-badge-modern {
    background: linear-gradient(135deg, rgba(157, 118, 81, 0.95), rgba(125, 93, 64, 0.95));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-badge-modern {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.service-badge-modern.special {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.95), rgba(211, 84, 0, 0.95));
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
}

.service-card-body {
    padding: 2.5rem 2rem;
    background: linear-gradient(to bottom, var(--white) 0%, #fafafa 100%);
    display: flex;
    flex-direction: column;
    min-height: 460px;
}

.service-card-body h3 {
    color: var(--primary-color);
    font-size: 1.45rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.service-card-body h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), #9D7651);
    transition: width 0.4s ease;
}

.service-card-modern:hover .service-card-body h3::after {
    width: 60%;
}

.service-card-body p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: auto;
    font-size: 0.98rem;
    flex-grow: 1;
    padding-bottom: 1.5rem;
}

.btn-card-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 14px 28px;
    background: var(--gradient-accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    box-shadow: var(--shadow-orange);
    position: relative;
    overflow: hidden;
}

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

.btn-card-modern:hover::before {
    left: 100%;
}

.btn-card-modern:hover {
    background: linear-gradient(135deg, var(--accent-orange-light), var(--accent-orange));
    transform: translateX(5px);
    gap: 0.9rem;
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.btn-card-modern i {
    font-size: 0.85rem;
    transition: transform 0.4s ease;
}

.btn-card-modern:hover i {
    transform: translateX(5px);
}

.services-cta-modern {
    text-align: center;
    margin-top: 3rem;
}

/* Mobile Responsive for Modern Services */
@media (max-width: 768px) {
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card-image {
        height: 220px;
    }
    
    .services-header-modern h2 {
        font-size: 2rem;
    }
    
    .services-cta-modern {
        display: flex;
        justify-content: center;
    }
    
    .service-card-body {
        padding: 1.5rem;
    }
    
    .mission-text {
        text-align: center;
    }
    
    .mission-text h2 {
        font-size: 2rem;
    }
    
    .mission-text p {
        font-size: 1rem;
    }
}

/* ===== SERVICE PAGES MOBILE RESPONSIVE ===== */

/* Mobile service pages (320px - 480px) */
@media (max-width: 480px) {
    /* Fix overflow issues on mobile */
    .service-content,
    .service-main,
    .service-text,
    .service-details,
    .container {
        overflow-x: hidden;
    }
    
    .service-hero {
        padding: 90px 0 50px;
    }
    
    .service-hero-content {
        text-align: center;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .breadcrumb {
        text-align: center;
        margin-bottom: 1rem;
        font-size: 0.8rem;
        word-wrap: break-word;
    }
    
    .service-content {
        padding: 40px 0;
    }
    
    .service-content h3 {
        font-size: 1.6rem;
        line-height: 1.3;
        word-wrap: break-word;
        hyphens: none;
    }
    
    .service-hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: none;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .service-hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        word-wrap: break-word;
        hyphens: none;
    }
    
    .service-content {
        padding: 50px 0;
    }
    
    .service-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .service-text,
    .service-sidebar {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .service-intro {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        width: 100%;
    }
    
    .service-details {
        width: 100%;
        max-width: 100%;
    }
    
    .service-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        word-wrap: break-word;
        hyphens: none;
    }
    
    .service-intro p {
        word-wrap: break-word;
        hyphens: none;
        line-height: 1.6;
    }
    
    .service-details h3 {
        font-size: 1.3rem;
        margin: 2rem 0 0.8rem;
        line-height: 1.4;
        word-wrap: break-word;
        hyphens: none;
    }
    
    .service-details p {
        word-wrap: break-word;
        hyphens: none;
        line-height: 1.6;
    }
    
    .service-list {
        padding-left: 1rem;
    }
    
    .service-list li {
        word-wrap: break-word;
        hyphens: none;
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }
    
    .service-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
        width: 100%;
        max-width: 100%;
    }
    
    .benefit-card {
        padding: 1.25rem;
        word-wrap: break-word;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .benefit-card i {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        display: block;
    }
    
    .benefit-card h4 {
        font-size: 1.05rem;
        margin-bottom: 0.6rem;
        line-height: 1.4;
        word-wrap: break-word;
        hyphens: none;
    }
    
    .benefit-card p {
        word-wrap: break-word;
        hyphens: none;
        line-height: 1.5;
        font-size: 0.9rem;
    }
    
    .benefit-card .btn-secondary {
        margin-top: 0.8rem;
        width: 100%;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
        width: 100%;
        max-width: 100%;
    }
    
    .process-step {
        padding: 1.25rem;
        padding-top: 1.5rem;
        border-radius: 10px;
        background: var(--white);
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        position: relative;
    }
    
    /* Fix step number positioning for ALL pages on mobile */
    .process-step .step-number {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin: 0 auto 0.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .process-step h4 {
        word-wrap: break-word;
        hyphens: none;
        line-height: 1.4;
        font-size: 1.05rem;
        margin-bottom: 0.6rem;
    }
    
    .process-step p {
        word-wrap: break-word;
        hyphens: none;
        line-height: 1.5;
        font-size: 0.9rem;
    }
    
    .process-step .step-icon {
        font-size: 2rem;
        margin: 1.5rem auto 1rem;
    }
    
    .process-step .step-arrow {
        display: none;
    }
    
    .methodology-list,
    .service-info {
        margin: 1.5rem 0;
        gap: 0.8rem;
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns: 1fr;
    }
    
    .methodology-item,
    .info-item {
        padding: 1rem;
        margin-bottom: 0.8rem;
        word-wrap: break-word;
        border-radius: 8px;
        background: var(--light-green);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }
    
    .info-item > i {
        margin-bottom: 0.8rem;
    }
    
    .methodology-item h4,
    .info-item h4 {
        word-wrap: break-word;
        hyphens: none;
        line-height: 1.4;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .methodology-item p,
    .info-item p {
        word-wrap: break-word;
        hyphens: none;
        line-height: 1.5;
        font-size: 0.9rem;
    }
    
    .methodology-item i,
    .info-item i {
        font-size: 1.3rem;
        margin-right: 0.5rem;
    }
    
    /* Download button in info-item */
    .info-item .btn-primary,
    .info-item .btn-secondary {
        width: 100%;
        display: block;
        text-align: center;
        margin-top: 1rem;
        padding: 12px 16px;
        font-size: 0.9rem;
        white-space: normal;
        line-height: 1.4;
    }
    
    .info-item .btn-primary i,
    .info-item .btn-secondary i {
        margin-right: 0.5rem;
    }
    
    .methodology-item ul {
        padding-left: 1rem;
        margin-top: 0.5rem;
    }
    
    .methodology-item li {
        word-wrap: break-word;
        hyphens: none;
        line-height: 1.5;
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
    }
    
    .contact-card, .related-services, .info-box {
        padding: 1.25rem;
        margin-bottom: 1rem;
        word-wrap: break-word;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contact-card h3,
    .related-services h3,
    .info-box h3 {
        font-size: 1.15rem;
        margin-bottom: 0.8rem;
        word-wrap: break-word;
        hyphens: none;
        line-height: 1.4;
    }
    
    .info-box .btn-primary,
    .info-box .btn-secondary {
        width: 100%;
        display: block;
        text-align: center;
        margin-top: 1rem;
        padding: 12px 16px;
        font-size: 0.9rem;
        white-space: normal;
        line-height: 1.4;
    }
    
    .contact-card p,
    .related-services p,
    .info-box p {
        word-wrap: break-word;
        hyphens: none;
        line-height: 1.5;
        font-size: 0.9rem;
    }
    
    .contact-card .btn-primary,
    .contact-card .btn-secondary,
    .info-box .btn-primary,
    .info-box .btn-secondary {
        width: 100%;
        margin-top: 0.8rem;
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .contact-info p {
        margin-bottom: 0.6rem;
        font-size: 0.9rem;
    }
    
    .related-services ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .related-services li {
        margin-bottom: 0.6rem;
    }
    
    .related-services a {
        display: block;
        padding: 0.6rem 0.8rem;
        background: var(--light-green);
        border-radius: 6px;
        text-decoration: none;
        color: var(--primary-color);
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }
    
    .related-services a:hover {
        background: var(--accent-orange);
        color: var(--white);
    }
    
    .breadcrumb {
        text-align: center;
        margin-bottom: 1.5rem;
        font-size: 0.85rem;
        word-wrap: break-word;
    }
    
    .service-hero-content {
        text-align: center;
        padding: 0 1rem;
    }
}

/* Tablet service pages (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .service-hero {
        padding: 100px 0 60px;
    }
    
    .service-hero h1 {
        font-size: 2.2rem;
        word-wrap: break-word;
        hyphens: none;
        line-height: 1.3;
    }
    
    .service-hero-subtitle {
        font-size: 1.1rem;
        word-wrap: break-word;
        line-height: 1.5;
    }
    
    .service-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-intro h2 {
        word-wrap: break-word;
        hyphens: none;
        line-height: 1.4;
    }
    
    .service-intro p,
    .service-details p {
        word-wrap: break-word;
        hyphens: none;
        line-height: 1.6;
    }
    
    .service-details h3 {
        word-wrap: break-word;
        hyphens: none;
        line-height: 1.4;
    }
    
    .service-list li {
        word-wrap: break-word;
        hyphens: none;
        line-height: 1.5;
    }
    
    .service-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .benefit-card h4 {
        word-wrap: break-word;
        hyphens: none;
        line-height: 1.4;
    }
    
    .benefit-card p {
        word-wrap: break-word;
        hyphens: none;
        line-height: 1.5;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Fix step numbers on tablet too */
    .process-step .step-number {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 0 auto 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .process-step {
        padding-top: 1.5rem;
        position: relative;
    }
    
    .process-step h4 {
        word-wrap: break-word;
        hyphens: none;
        line-height: 1.4;
    }
    
    .process-step p {
        word-wrap: break-word;
        hyphens: none;
        line-height: 1.5;
    }
    
    .methodology-item h4,
    .info-item h4 {
        word-wrap: break-word;
        hyphens: none;
        line-height: 1.4;
    }
    
    .methodology-item p,
    .info-item p {
        word-wrap: break-word;
        hyphens: none;
        line-height: 1.5;
    }
    
    .methodology-item li {
        word-wrap: break-word;
        hyphens: none;
        line-height: 1.5;
    }
    
    .service-info {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Medium tablets (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .service-main {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
    }
    
    .service-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* iPad Pro and Large Tablets Service Pages (1024px - 1366px) */
@media (min-width: 1024px) and (max-width: 1366px) {
    .service-content {
        padding: 80px 0;
    }
    
    .service-hero {
        padding: 140px 0 80px;
    }
    
    .service-hero-content {
        max-width: 95%;
        margin: 0 auto;
    }
    
    .service-hero h1 {
        font-size: 3.2rem;
    }
    
    .service-hero-subtitle {
        font-size: 1.3rem;
    }
    
    .service-main {
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
        max-width: 95%;
        margin: 0 auto;
    }
    
    .service-benefits {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .service-sidebar {
        padding: 2.5rem;
    }
    
    .sidebar-card {
        padding: 2rem;
    }
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--gradient-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}


/* Keyboard Navigation Enhancement */
.keyboard-nav *:focus {
    outline: 2px solid var(--accent-orange) !important;
    outline-offset: 2px !important;
}

/* Enhanced Focus States */
.nav-link:focus, 
.btn-primary:focus, 
.btn-secondary:focus,
.service-link:focus,
.training-card:focus {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
    transform: translateY(-2px);
}

/* Success stories slider focus states */
.slider-btn:focus,
.slider-indicator:focus {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
}

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

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

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

/* Apply animations to elements */
.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.target-item {
    animation: slideInLeft 0.8s ease-out forwards;
}

.process-step:nth-child(even) {
    animation: slideInRight 0.8s ease-out forwards;
}

/* Improved Hover Effects */
.service-featured:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.location-card:hover .location-icon {
    background: var(--gradient-accent);
    transform: rotate(10deg) scale(1.1);
}

.partner-category:hover .category-icon {
    background: var(--gradient-primary);
    transform: rotate(-10deg) scale(1.1);
}

/* Smooth Transitions */
* {
    transition-property: transform, box-shadow, background, border-color;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(157, 118, 81, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.faq-section .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.faq-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #9D7651 0%, #E67E22 100%);
    border-radius: 2px;
}

.faq-section .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 25px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(157, 118, 81, 0.15);
    border-color: rgba(157, 118, 81, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #9D7651 0%, #E67E22 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-question:hover {
    color: #9D7651;
    padding-left: 35px;
}

.faq-question:hover::before {
    opacity: 1;
}

.faq-item.active .faq-question {
    color: #9D7651;
    padding-left: 35px;
}

.faq-item.active .faq-question::before {
    opacity: 1;
}

.faq-question span {
    flex: 1;
    line-height: 1.5;
}

.faq-icon {
    font-size: 1.2rem;
    color: #9D7651;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #E67E22;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
    background: linear-gradient(to bottom, rgba(157, 118, 81, 0.02) 0%, white 50%);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 30px 30px 30px;
    border-top: 1px solid rgba(157, 118, 81, 0.1);
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--text-dark);
    font-weight: 600;
}

.faq-answer a {
    color: #9D7651;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(157, 118, 81, 0.3);
    transition: all 0.3s ease;
}

.faq-answer a:hover {
    color: #E67E22;
    border-bottom-color: #E67E22;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(157, 118, 81, 0.05) 0%, rgba(230, 126, 34, 0.05) 100%);
    border-radius: 16px;
    border: 2px solid rgba(157, 118, 81, 0.1);
    position: relative;
    z-index: 1;
}

.faq-cta p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.faq-cta .btn-orange {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #F7941D 0%, #E67E22 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 148, 29, 0.3);
}

.faq-cta .btn-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(247, 148, 29, 0.4);
    background: linear-gradient(135deg, #E67E22 0%, #D97706 100%);
}

.faq-cta .btn-orange i {
    font-size: 1rem;
}

/* FAQ Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section .section-header h2 {
        font-size: 2rem;
    }
    
    .faq-section .section-header p {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 20px 20px;
        font-size: 1rem;
        gap: 15px;
    }
    
    .faq-question:hover,
    .faq-item.active .faq-question {
        padding-left: 25px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 20px 25px 20px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .faq-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .faq-cta p {
        font-size: 1.1rem;
    }
    
    .faq-cta .btn-orange {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-section .section-header h2 {
        font-size: 1.7rem;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: 18px 18px;
    }
    
    .faq-icon {
        font-size: 1rem;
    }
}

/* ===================================
   SIMPLE LIST SECTION (AMV Style)
   =================================== */
.simple-list-section {
    margin: 30px 0;
}

.simple-list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 25px;
    margin-bottom: 15px;
    background: white;
    border: 2px solid #E67E22;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.simple-list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.15);
    border-color: #9D7651;
}

.simple-list-item i {
    font-size: 1.5rem;
    color: #E67E22;
    margin-top: 2px;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.list-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.list-content strong {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.list-content span {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Responsive voor simple list */
@media (max-width: 768px) {
    .simple-list-item {
        padding: 18px 20px;
        gap: 15px;
    }
    
    .simple-list-item i {
        font-size: 1.3rem;
    }
    
    .list-content strong {
        font-size: 1rem;
    }
    
    .list-content span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .simple-list-item {
        padding: 15px 18px;
        gap: 12px;
    }
    
    .simple-list-item i {
        font-size: 1.2rem;
    }
    
    .list-content strong {
        font-size: 0.95rem;
    }
    
    .list-content span {
        font-size: 0.85rem;
    }
    
    .service-badge-modern {
        padding: 4px 12px;
        font-size: 0.65rem;
        border-radius: 16px;
    }
}

/* ============================================
   AMV Adviesraad Section
   ============================================ */
.amv-adviesraad {
    background: linear-gradient(135deg, #f0f8f7 0%, #e8f5e9 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.amv-adviesraad-content {
    max-width: 1200px;
    margin: 0 auto;
}

.amv-adviesraad-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: var(--accent-orange);
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.amv-adviesraad-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.amv-adviesraad-text {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.quote-highlight {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    position: relative;
    color: white;
}

.quote-highlight i {
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 15px;
    color: white !important;
}

.quote-highlight p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0;
    font-style: italic;
    font-weight: 500;
    color: white !important;
}

.amv-adviesraad-text > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

.amv-adviesraad-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 40px 0;
}

.highlight-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(45, 90, 43, 0.2);
}

.highlight-icon i {
    color: white;
    font-size: 1.3rem;
}

.highlight-content h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 700;
}

.highlight-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.amv-adviesraad-cta {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.amv-adviesraad-cta .btn-primary,
.amv-adviesraad-cta .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
}

.amv-adviesraad-visual {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.visual-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 3px solid var(--primary-color);
}

.visual-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
}

.visual-icon i {
    font-size: 2.5rem;
    color: white;
}

.visual-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.visual-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
}

/* AMV Hero Image Styling */
.amv-hero-image {
    margin-bottom: 25px;
    max-width: 450px; /* Maak de foto kleiner */
    margin-left: auto;
    margin-right: auto;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(157, 118, 81, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(157, 118, 81, 0.1);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        transparent 40%,
        rgba(0, 0, 0, 0.15) 70%,
        rgba(0, 0, 0, 0.35) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.image-wrapper:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(157, 118, 81, 0.25),
        0 15px 40px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.7),
        0 0 0 8px rgba(157, 118, 81, 0.05);
    border-color: rgba(157, 118, 81, 0.2);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.05) contrast(1.05);
}

.image-wrapper:hover .hero-img {
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.08);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(157, 118, 81, 0) 0%,
        rgba(157, 118, 81, 0.1) 50%,
        rgba(157, 118, 81, 0.4) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    z-index: 2;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.overlay-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(157, 118, 81, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.image-wrapper:hover .overlay-badge {
    transform: translateY(0);
}

.overlay-badge i {
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.stat-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-text strong {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.stat-text span {
    font-size: 0.9rem;
    color: #777;
}

/* Responsive Design voor AMV Adviesraad */
@media (max-width: 992px) {
    .amv-adviesraad {
        padding: 80px 0;
    }
    
    .amv-adviesraad-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .amv-adviesraad-text {
        padding: 35px;
    }
    
    .amv-adviesraad-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .amv-adviesraad {
        padding: 60px 0;
    }
    
    .amv-adviesraad-text {
        padding: 25px;
    }
    
    .quote-highlight {
        padding: 20px;
    }
    
    .quote-highlight p {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .amv-adviesraad-cta {
        flex-direction: column;
    }
    
    .amv-adviesraad-cta .btn-primary,
    .amv-adviesraad-cta .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .overlay-badge {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .image-overlay {
        padding: 20px;
    }
    
    .amv-hero-image {
        max-width: 100%;
    }
    
    .image-wrapper:hover {
        transform: translateY(-5px) scale(1.01);
    }
}

/* ============================================
   AMV Adviesraad Goals Cards
   ============================================ */
.adviesraad-goals {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.goal-card {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(45, 90, 43, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.goal-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(45, 90, 43, 0.2);
    border-color: var(--secondary-color);
}

.goal-card:hover::before {
    opacity: 1;
}

.goal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D97706, #F59E0B);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.goal-icon i {
    color: white;
    font-size: 1.8rem;
}

.goal-content h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.4;
}

.goal-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Responsive voor goal cards */
@media (max-width: 768px) {
    .goal-card {
        flex-direction: column;
        padding: 20px;
    }
    
    .goal-icon {
        width: 50px;
        height: 50px;
    }
    
    .goal-icon i {
        font-size: 1.5rem;
    }
    
    .goal-content h4 {
        font-size: 1.1rem;
    }
    
    .goal-content p {
        font-size: 0.95rem;
    }
}

/* ============================================
   AMV Adviesraad Luxury Slideshow
   ============================================ */
.amv-slideshow-container {
    margin: 40px 0 50px;
    padding: 0;
}

.slideshow-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 
        0 25px 70px rgba(157, 118, 81, 0.2),
        0 15px 40px rgba(0, 0, 0, 0.15),
        inset 0 0 0 2px rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 4px solid rgba(157, 118, 81, 0.15);
}

.slide {
    display: none;
    animation: fadeIn 0.8s ease-in-out;
}

.slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.slide-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.slide-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        transparent 30%,
        rgba(0, 0, 0, 0.12) 65%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.08) contrast(1.08) saturate(1.1);
}

.slide.active .slide-image {
    animation: zoomIn 8s ease-out forwards;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(157, 118, 81, 0.4) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 40px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide:hover .slide-overlay {
    opacity: 1;
}

.slide-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 18px 32px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.35),
        0 6px 18px rgba(157, 118, 81, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
}

.slide:hover .slide-badge {
    transform: translateY(0);
}

.slide-badge i {
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Navigation Buttons - Hidden */
.slide-nav {
    display: none;
}

/* Indicators */
.slide-indicators {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.25);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: white;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.indicator:hover {
    transform: scale(1.3);
    border-color: var(--primary-color);
}

.indicator.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    width: 32px;
    border-radius: 10px;
    box-shadow: 
        0 4px 12px rgba(157, 118, 81, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.indicator.active::before {
    width: 6px;
    height: 6px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .slideshow-wrapper {
        max-width: 100%;
        border-radius: 20px;
    }
    
    .slide-badge {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .amv-slideshow-container {
        margin: 30px -15px 40px;
    }
    
    .slideshow-wrapper {
        border-radius: 16px;
        border-width: 2px;
    }
    
    .slide-overlay {
        padding: 20px;
    }
    
    .slide-badge {
        padding: 12px 20px;
        font-size: 0.9rem;
        gap: 10px;
    }
    
    .slide-badge i {
        font-size: 1.1rem;
    }
    
    .slide-indicators {
        display: none !important;
    }
}
