/*--------------------------------------------------------------
# Variables & Reset
--------------------------------------------------------------*/
:root {
    /* Colors */
    --primary-color: #3E4095;
    --primary-dark: #2E2F70;
    --primary-light: #5152B4;
    --secondary-color: #FF5E14;
    --secondary-dark: #E54600;
    --secondary-light: #FF7A3D;
    --dark-color: #222236;
    --light-color: #F8F9FA;
    --text-color: #565969;
    --heading-color: #1E1E2F;
    --border-color: #E1E1E1;
    --bg-light: #F8F9FA;
    --bg-dark: #0F1026;
    --success-color: #28A745;
    --warning-color: #FFC107;
    --danger-color: #DC3545;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-smaller: 13px;
    --font-size-large: 18px;
    --font-size-xlarge: 22px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.7s ease;

    /* Border Radius */
    --border-radius-small: 4px;
    --border-radius-medium: 8px;
    --border-radius-large: 12px;
    --border-radius-xlarge: 20px;
    --border-radius-circle: 50%;

    /* Box Shadow */
    --box-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --box-shadow-md: 0 5px 15px rgba(0, 0, 0, 0.07);
    --box-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --box-shadow-xl: 0 15px 35px rgba(0, 0, 0, 0.15);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;

    /* Container */
    --container-width: 1200px;
    --container-padding: 15px;
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

button {
    cursor: pointer;
    background: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    line-height: 1.3;
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

section {
    position: relative;
    padding: var(--spacing-xxl) 0;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity var(--transition-medium), visibility var(--transition-medium);
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--primary-light);
    border-radius: 50%;
    border-top-color: var(--secondary-color);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-medium), transform var(--transition-medium);
}

.animate-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-fast);
}

.header-top {
    background-color: var(--dark-color);
    padding: 10px 0;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: var(--light-color);
    font-size: var(--font-size-smaller);
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.contact-info i {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--light-color);
    font-size: var(--font-size-smaller);
    width: 28px;
    height: 28px;
    border-radius: var(--border-radius-circle);
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.header-main {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 0;
    box-shadow: var(--box-shadow-sm);
    transition: all var(--transition-fast);
}

.site-header.sticky .header-main {
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--box-shadow-md);
}

.header-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.logo span {
    color: var(--secondary-color);
}

.main-nav {
    margin-left: auto;
    margin-right: 20px;
}

.main-menu {
    display: flex;
    gap: 25px;
}

.main-menu a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.main-menu a:hover,
.main-menu a.active {
    color: var(--primary-color);
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-fast);
}

.main-menu a:hover::after,
.main-menu a.active::after {
    width: 100%;
}

.menu-item-has-children {
    position: relative;
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background-color: white;
    box-shadow: var(--box-shadow-md);
    border-radius: var(--border-radius-small);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    z-index: 100;
}

.sub-menu li {
    margin: 0;
}

.sub-menu a {
    padding: 8px 20px;
    display: block;
    font-weight: normal;
    font-size: var(--font-size-small);
}

.sub-menu a:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.sub-menu a::after {
    display: none;
}

.header-cta .btn {
    padding: 10px 20px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--dark-color);
    transition: all var(--transition-fast);
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius-medium);
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-fast);
    font-size: var(--font-size-small);
    cursor: pointer;
    line-height: 1.5;
}

.btn i {
    margin-left: 8px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-md);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
}

.btn-outline:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-md);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--light-color);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    border-color: var(--light-color);
    transform: translateY(-3px);
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-top: var(--spacing-md);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
    margin-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/image.webp');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(30, 30, 47, 0.9), rgba(30, 30, 47, 0.7));
}

.hero-content {
    max-width: 650px;
    color: var(--light-color);
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--light-color);
}

.hero-content p {
    font-size: var(--font-size-large);
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.trust-badges {
    display: flex;
    gap: 25px;
    margin-top: var(--spacing-lg);
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge i {
    color: var(--secondary-color);
    font-size: 24px;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-divider svg {
    width: 100%;
    height: auto;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: var(--spacing-md);
}

.feature-card {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--box-shadow-sm);
    text-align: center;
    transition: all var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-md);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-circle);
    background-color: rgba(62, 64, 149, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: var(--primary-color);
    font-size: 28px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    font-size: var(--font-size-small);
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Section Header
--------------------------------------------------------------*/
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
}

.section-header.light {
    color: var(--light-color);
    padding: 30px;
}

.section-header.light .section-title,
.section-header.light .section-subtitle {
    color: var(--light-color);
}

.section-subtitle {
    display: inline-block;
    font-size: var(--font-size-small);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--secondary-color);
    letter-spacing: 1px;
    margin-bottom: var(--spacing-xs);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-description {
    font-size: var(--font-size-large);
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

.section-header.light .section-description {
    color: rgba(255, 255, 255, 0.85);
}

/*--------------------------------------------------------------
# Section Shapes
--------------------------------------------------------------*/
.section-shape-top,
.section-shape-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.section-shape-top {
    top: 0;
}

.section-shape-bottom {
    bottom: 0;
}

.section-shape-top svg,
.section-shape-bottom svg {
    width: 100%;
    height: auto;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services-section {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: var(--spacing-xxl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--box-shadow-md);
    transition: all var(--transition-fast);
    display: flex;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.service-icon {
    width: 90px;
    background-color: var(--primary-light);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.service-content {
    padding: var(--spacing-md);
    flex: 1;
}

.service-content h3 {
    color: var(--heading-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.service-content p {
    color: var(--text-color);
    font-size: var(--font-size-small);
    margin-bottom: var(--spacing-md);
}

.service-features {
    margin-bottom: var(--spacing-md);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: var(--font-size-small);
    color: var(--text-color);
}

.service-features li i {
    color: var(--secondary-color);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--font-size-small);
}

.service-link:hover {
    color: var(--secondary-color);
}

.service-link i {
    transition: transform var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(5px);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-section {
    background-color: var(--light-color);
    padding: var(--spacing-xxl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image-container {
    position: relative;
    height: 500px;
}

.about-image {
    position: absolute;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--box-shadow-md);
}

.about-image.main-image {
    width: 70%;
    height: 400px;
    background-image: url('/img/image2.webp');
    background-size: cover;
    background-position: center;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-image.secondary-image {
    width: 50%;
    height: 300px;
    background-image: url('/img/image3.webp');
    background-size: cover;
    background-position: center;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.experience-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius-circle);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 3;
    box-shadow: var(--box-shadow-lg);
}

.experience-badge .number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: var(--font-size-small);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .section-subtitle,
.about-content .section-title {
    text-align: left;
}

.about-content .section-title::after {
    left: 0;
    transform: none;
}

.about-description {
    margin-bottom: var(--spacing-md);
}

.about-features {
    margin-bottom: var(--spacing-lg);
}

.about-features .feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: var(--spacing-md);
}

.about-features .feature:last-child {
    margin-bottom: 0;
}

.about-features .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin: 0;
    background-color: rgba(255, 94, 20, 0.1);
    color: var(--secondary-color);
    flex-shrink: 0;
}

.about-features .feature-text {
    flex: 1;
}

.about-features .feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.about-features .feature-text p {
    font-size: var(--font-size-small);
    margin-bottom: 0;
}

.about-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.phone-link:hover {
    color: var(--secondary-color);
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-us-section {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: var(--spacing-xxl) 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-us-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-medium);
    padding: var(--spacing-lg);
    transition: all var(--transition-fast);
}

.why-us-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.why-us-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-circle);
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: white;
    font-size: 28px;
}

.why-us-card h3 {
    color: var(--light-color);
    margin-bottom: var(--spacing-sm);
}

.why-us-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--font-size-small);
}

/*--------------------------------------------------------------
# Process Section
--------------------------------------------------------------*/
.process-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-color);
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 34px;
    height: 100%;
    width: 3px;
    background-color: rgba(62, 64, 149, 0.2);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: var(--spacing-lg);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: var(--border-radius-circle);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    z-index: 1;
}

.timeline-content {
    background-color: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--box-shadow-sm);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials-section {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: var(--spacing-xxl) 0;
}

.testimonial-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-slider {
    display: flex;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.testimonial-slide {
    min-width: 50%;
    scroll-snap-align: start;
    padding: 15px;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius-medium);
    padding: var(--spacing-lg);
    height: 100%;
    position: relative;
    box-shadow: var(--box-shadow-md);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    left: 20px;
    color: rgba(62, 64, 149, 0.1);
    font-size: 40px;
}

.testimonial-content {
    padding-top: 40px;
    margin-bottom: var(--spacing-md);
}

.testimonial-content p {
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: var(--spacing-sm);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-circle);
    background-color: #e0e0e0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.testimonial-slide:nth-child(1) .author-avatar {
    background-image: url('/img/person-1.jpg');
}

.testimonial-slide:nth-child(2) .author-avatar {
    background-image: url('/img/person-2.jpg');
}

.testimonial-slide:nth-child(3) .author-avatar {
    background-image: url('/img/person-3.jpg');
}

.testimonial-slide:nth-child(4) .author-avatar {
    background-image: url('/img/person-4.jpg');
}

.author-info h4 {
    margin-bottom: 0;
    color: var(--heading-color);
}

.author-info p {
    margin-bottom: 0;
    font-size: var(--font-size-smaller);
    color: var(--text-color);
}

.testimonial-rating {
    color: var(--warning-color);
    font-size: 14px;
}

.testimonial-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
    pointer-events: none;
}

.control-prev,
.control-next {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-circle);
    background-color: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    border: none;
    box-shadow: var(--box-shadow-md);
    opacity: 0.7;
}

.control-prev:hover,
.control-next:hover {
    background-color: var(--secondary-color);
    color: white;
    opacity: 1;
}

.control-prev {
    margin-left: -25px;
}

.control-next {
    margin-right: -25px;
}

/*--------------------------------------------------------------
# Regions Section
--------------------------------------------------------------*/
.regions-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-color);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.region-card {
    background-color: white;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
    transition: all var(--transition-fast);
    height: 100%;
}

.region-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-md);
}

.region-image {
    height: 200px;
    position: relative;
    background-size: cover;
    background-position: center;
}



.region-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
}

.region-content {
    padding: var(--spacing-md);
}

.region-content h3 {
    margin-bottom: 5px;
}

.region-population {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: var(--font-size-small);
    margin-bottom: var(--spacing-sm);
}

.region-description {
    font-size: var(--font-size-small);
    margin-bottom: var(--spacing-sm);
}

.region-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--font-size-small);
}

.region-link:hover {
    color: var(--secondary-color);
}

.region-link i {
    transition: transform var(--transition-fast);
}

.region-link:hover i {
    transform: translateX(5px);
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq-section {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: var(--spacing-xxl) 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    margin-bottom: 15px;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--heading-color);
}

.faq-icon {
    color: var(--primary-color);
    transition: all var(--transition-fast);
}

.faq-answer {
    padding: 0 var(--spacing-md) var(--spacing-md);
    display: none;
    color: var(--text-color);
}

.faq-answer p {
    margin-bottom: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

.faq-item.active .faq-answer {
    display: block;
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-color);
}

.cta-container {
    background-color: var(--primary-color);
    border-radius: var(--border-radius-large);
    padding: var(--spacing-xl);
    color: var(--light-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow-lg);
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/pattern.png');
    background-size: cover;
    opacity: 0.05;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--light-color);
    margin-bottom: var(--spacing-sm);
    font-size: 2.2rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-large);
    margin-bottom: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    gap: 20px;
    background-color: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--box-shadow-sm);
    transition: all var(--transition-fast);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-md);
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-circle);
    background-color: rgba(62, 64, 149, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-content p {
    font-size: var(--font-size-small);
    margin-bottom: 0;
}

.info-content a {
    color: var(--text-color);
}

.info-content a:hover {
    color: var(--primary-color);
}

.contact-social {
    margin-top: var(--spacing-sm);
}

.contact-social h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
}

.contact-social .social-icons {
    display: flex;
    gap: 15px;
}

.contact-social .social-icons a {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-circle);
    background-color: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    box-shadow: var(--box-shadow-sm);
}

.contact-social .social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-md);
}

.contact-form-container {
    background-color: white;
    border-radius: var(--border-radius-medium);
    padding: var(--spacing-lg);
    box-shadow: var(--box-shadow-md);
}

.contact-form .form-group {
    margin-bottom: var(--spacing-md);
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: var(--font-size-small);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-small);
    transition: all var(--transition-fast);
    background-color: #f9f9f9;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(62, 64, 149, 0.1);
    background-color: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-check input {
    width: auto;
}

.form-check label {
    margin-bottom: 0;
    font-size: var(--font-size-small);
}

.form-check a {
    color: var(--primary-color);
}

.form-check a:hover {
    text-decoration: underline;
}

/*--------------------------------------------------------------
# Map Section
--------------------------------------------------------------*/
.map-section {
    height: 400px;
    background-color: #e9e9e9;
}

.map-container {
    height: 100%;
    width: 100%;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1.2rem;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
    background-color: var(--bg-dark);
    color: white;
    position: relative;
}

.footer-top {
    padding: var(--spacing-xxl) 0 var(--spacing-xl);
}

.footer-widgets {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 50px;
}

.footer-widget {
    margin-bottom: var(--spacing-lg);
}

.footer-logo h2 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.footer-logo span {
    color: var(--secondary-color);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-small);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-circle);
    color: white;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.widget-title {
    color: white;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.widget-links li {
    margin-bottom: 10px;
}

.widget-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-small);
    transition: all var(--transition-fast);
}

.widget-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.widget-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-small);
}

.widget-contact li i {
    color: var(--secondary-color);
    font-size: 16px;
    margin-top: 5px;
}

.widget-contact li a {
    color: rgba(255, 255, 255, 0.7);
}

.widget-contact li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-smaller);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-smaller);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.back-to-top {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    box-shadow: var(--box-shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-5px);
}

/*--------------------------------------------------------------
# Floating Contact
--------------------------------------------------------------*/
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 99;
}

.floating-contact a {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow-lg);
    color: white;
    transition: all var(--transition-fast);
}

.floating-contact .phone-btn {
    background-color: var(--secondary-color);
}

.floating-contact .contact-btn {
    background-color: var(--primary-color);
}

.floating-contact a:hover {
    transform: translateY(-5px);
}

/*--------------------------------------------------------------
# Responsive Styles
--------------------------------------------------------------*/
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .footer-widgets {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: white;
        z-index: 999;
        transition: all var(--transition-fast);
        overflow-y: auto;
        margin: 0;
    }

    .main-nav.active {
        left: 0;
    }

    .main-menu {
        flex-direction: column;
        gap: 0;
        padding: var(--spacing-sm) 0;
    }

    .main-menu li {
        width: 100%;
    }

    .main-menu a {
        display: block;
        padding: 15px var(--spacing-lg);
        border-bottom: 1px solid var(--border-color);
    }

    .main-menu a::after {
        display: none;
    }

    .menu-item-has-children>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-item-has-children>a::after {
        content: '\f107';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        display: block;
    }

    .sub-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        display: none;
    }

    .sub-menu li a {
        padding-left: var(--spacing-xl);
    }

    .menu-item-has-children.active .sub-menu {
        display: block;
    }

    .menu-item-has-children.active>a::after {
        transform: rotate(180deg);
    }

    .header-cta {
        margin-left: auto;
    }

    .about-grid,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-image-container {
        height: 400px;
        margin-bottom: var(--spacing-lg);
    }

    .testimonial-slide {
        min-width: 100%;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .header-top {
        display: none;
    }

    .hero-section {
        height: auto;
        min-height: 80vh;
    }

    .hero-btns,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-btns .btn,
    .cta-buttons .btn {
        width: 100%;
    }

    .trust-badges {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-image-container {
        height: 350px;
    }

    .about-image.main-image {
        width: 80%;
        height: 250px;
    }

    .about-image.secondary-image {
        width: 60%;
        height: 200px;
    }

    .about-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-cta .btn {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-image-container {
        height: 300px;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
    }

    .experience-badge .number {
        font-size: 2rem;
    }

    .experience-badge .text {
        font-size: 0.8rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Commune Page Specific Styles */
.commune-page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
    margin-top: 90px;
}

.commune-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(22, 28, 45, 0.7), rgba(22, 28, 45, 0.7)), url('/img/image.webp');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.commune-page-hero-content {
    color: var(--light-color);
    max-width: 800px;
}

.commune-page-hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: var(--spacing-md);
    color: var(--light-color);
}

.commune-page-meta {
    display: flex;
    gap: 20px;
    margin-bottom: var(--spacing-md);
}

.commune-page-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-size-large);
}

.commune-page-meta .meta-item i {
    color: var(--secondary-color);
}

.commune-page-cta {
    display: flex;
    gap: 15px;
    margin-top: var(--spacing-lg);
}

/* Main Content Layout */
.commune-page-content {
    padding: 0;
    background-color: var(--light-color);
}

.commune-page-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    padding: var(--spacing-xl) 0;
}

/* Main Column */
.commune-article-section {
    margin-bottom: var(--spacing-xl);
}

.section-intro {
    margin-bottom: var(--spacing-lg);
}

.section-intro h2 {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.section-image {
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--box-shadow-md);
    margin-bottom: var(--spacing-lg);
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.section-image:hover img {
    transform: scale(1.02);
}

/* Article Content */
.commune-article {
    margin-bottom: var(--spacing-xl);
}

.article-section {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.article-section:last-child {
    border-bottom: none;
}

.article-section h2 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.article-content {
    font-size: var(--font-size-base);
    line-height: 1.8;
}

.article-content p {
    margin-bottom: var(--spacing-md);
}

.article-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.article-content ul {
    margin-bottom: var(--spacing-md);
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 8px;
}

.special-services {
    background-color: rgba(62, 64, 149, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-medium);
    border: none;
}

/* Features Section */
.features-highlight {
    margin-bottom: var(--spacing-xl);
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--box-shadow-sm);
}

.features-highlight h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-size: 1.8rem;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    color: var(--secondary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
    color: var(--heading-color);
}

.feature-content p {
    font-size: var(--font-size-small);
    margin-bottom: 0;
}

/* Testimonials Section */
.commune-testimonials {
    margin-bottom: var(--spacing-xl);
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--box-shadow-sm);
}

.commune-testimonials h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-size: 1.8rem;
    color: var(--primary-color);
}

.testimonials-slider {
    position: relative;
    margin-bottom: var(--spacing-md);
}

.testimonial-slide {
    display: none;
}

.testimonial-slide:first-child {
    display: block;
}

.testimonial-card {
    background-color: rgba(62, 64, 149, 0.03);
    border-radius: var(--border-radius-medium);
    padding: var(--spacing-lg);
    position: relative;
}

.testimonial-content {
    position: relative;
    padding-left: 30px;
    margin-bottom: var(--spacing-md);
}

.quote-icon {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.5rem;
    color: var(--secondary-color);
    opacity: 0.5;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-circle);
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.author-details h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.author-details p {
    margin-bottom: 0;
    font-size: var(--font-size-small);
    color: var(--text-color);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: var(--spacing-md);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--border-radius-circle);
    background-color: var(--border-color);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background-color: var(--secondary-color);
}

/* FAQ Section */
.commune-faq {
    margin-bottom: var(--spacing-xl);
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--box-shadow-sm);
}

.commune-faq h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-size: 1.8rem;
    color: var(--primary-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--spacing-sm);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
}

.faq-question {
    padding: var(--spacing-md);
    background-color: rgba(62, 64, 149, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--heading-color);
}

.faq-toggle {
    color: var(--primary-color);
    transition: transform var(--transition-fast);
}

.faq-answer {
    padding: 0 var(--spacing-md) 0;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.faq-item.active .faq-answer {
    padding: 0 var(--spacing-md) var(--spacing-md);
    max-height: 500px;
}

.faq-answer p {
    margin-bottom: 0;
}

/* Contact Form */
.commune-contact {
    margin-bottom: var(--spacing-xl);
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--box-shadow-sm);
}

.commune-contact h2 {
    text-align: center;
    margin-bottom: var(--spacing-sm);
    font-size: 1.8rem;
    color: var(--primary-color);
}

.contact-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-small);
    background-color: #f8f9fa;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(62, 64, 149, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: var(--font-size-small);
}

.form-submit {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.btn-lg {
    padding: 15px 30px;
    font-size: var(--font-size-base);
}

/* Sidebar */
.commune-page-sidebar {
    position: relative;
}

.sidebar-card {
    background-color: white;
    border-radius: var(--border-radius-medium);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--box-shadow-sm);
}

.sidebar-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--secondary-color);
    color: var(--primary-color);
}

.contact-methods {
    margin-bottom: var(--spacing-md);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: var(--spacing-sm);
}

.contact-method i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 5px;
}

.method-details {
    flex: 1;
}

.method-label {
    display: block;
    font-size: var(--font-size-smaller);
    color: var(--text-color);
    margin-bottom: 3px;
}

.method-value {
    font-weight: 500;
    color: var(--heading-color);
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
}

.area-list li,
.services-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.area-list li:last-child,
.services-list li:last-child {
    border-bottom: none;
}

.area-list a {
    display: block;
    color: var(--text-color);
    transition: all var(--transition-fast);
}

.area-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.area-list li.current a {
    color: var(--secondary-color);
    font-weight: 600;
}

.services-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    transition: all var(--transition-fast);
}

.services-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.services-list a i {
    color: var(--secondary-color);
}

.usp-list {
    padding-left: 5px;
}

.usp-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: var(--font-size-small);
}

.usp-list li i {
    color: var(--secondary-color);
}

/* Related Communes */
.related-communes {
    background-color: var(--bg-light);
    padding: var(--spacing-xl) 0;
}

.related-communes h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-size: 2rem;
    color: var(--primary-color);
}

.communes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.commune-card {
    background-color: white;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
    transition: all var(--transition-fast);
}

.commune-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-md);
}

.commune-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.commune-details {
    padding: var(--spacing-md);
}

.commune-details h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.commune-details p {
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-small);
}

/* CTA Banner */
.cta-banner {
    background-color: var(--primary-color);
    padding: var(--spacing-xl) 0;
    color: var(--light-color);
}

.cta-banner-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner-content h2 {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--light-color);
}

.cta-banner-content p {
    font-size: var(--font-size-large);
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .commune-page-layout {
        grid-template-columns: 2fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .commune-page-hero-content h1 {
        font-size: 2.5rem;
    }

    .commune-page-layout {
        grid-template-columns: 1fr;
    }

    .commune-page-sidebar {
        order: 1;
    }

    .commune-page-main {
        order: 2;
    }

    .sidebar-card {
        margin-bottom: var(--spacing-md);
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .commune-page-hero {
        min-height: 350px;
    }

    .commune-page-hero-content h1 {
        font-size: 2rem;
    }

    .commune-page-meta {
        flex-direction: column;
        gap: 10px;
    }

    .commune-page-cta {
        flex-direction: column;
    }

    .commune-page-cta .btn {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .commune-page-hero-content h1 {
        font-size: 1.8rem;
    }

    .section-intro h2,
    .commune-faq h2,
    .commune-testimonials h2,
    .commune-contact h2 {
        font-size: 1.5rem;
    }

    .article-section h2 {
        font-size: 1.3rem;
    }

    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Enhanced List Styling for Commune Pages */

/* General list styling improvements */
.commune-article ul,
.commune-article ol,
.special-services-content ul,
.special-services-content ol,
.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 0;
    list-style-position: outside;
}

/* Unordered lists */
.commune-article ul,
.special-services-content ul,
.article-content ul {
    list-style: none;
}

.commune-article ul li,
.special-services-content ul li,
.article-content ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.commune-article ul li:before,
.special-services-content ul li:before,
.article-content ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

/* Ordered lists */
.commune-article ol,
.special-services-content ol,
.article-content ol {
    counter-reset: item;
    list-style-type: none;
}

.commune-article ol li,
.special-services-content ol li,
.article-content ol li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    line-height: 1.6;
    counter-increment: item;
}

.commune-article ol li:before,
.special-services-content ol li:before,
.article-content ol li:before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}

/* List items with icons (for feature lists) */
.commune-article ul.feature-list li,
.article-content ul.feature-list li {
    padding-left: 35px;
}

.commune-article ul.feature-list li:before,
.article-content ul.feature-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    width: auto;
    height: auto;
    background-color: transparent;
    color: var(--secondary-color);
    top: 0;
    font-size: 16px;
}

/* Nested lists */
.commune-article ul ul,
.commune-article ol ol,
.commune-article ul ol,
.commune-article ol ul,
.article-content ul ul,
.article-content ol ol,
.article-content ul ol,
.article-content ol ul {
    margin: 12px 0 0 0;
}

/* Add hover effect */
.commune-article ul li:hover:before,
.special-services-content ul li:hover:before,
.article-content ul li:hover:before {
    transform: scale(1.5);
    transition: transform 0.2s ease;
}

.commune-article ol li:hover:before,
.special-services-content ol li:hover:before,
.article-content ol li:hover:before {
    background-color: var(--secondary-color);
    transition: background-color 0.2s ease;
}

/* Additional styling for lists in specific sections */
.faq-answer ul,
.faq-answer ol {
    margin: 10px 0;
}

.faq-answer ul li,
.faq-answer ol li {
    margin-bottom: 8px;
}

/* Styling for lists in sidebar */
.sidebar-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.usp-list li:hover i {
    transform: translateX(3px);
    transition: transform 0.2s ease;
}

.grecaptcha-badge {
    z-index: 2147483647 !important;
    margin-bottom: 200px;
}

/* Mobile Responsiveness Fixes */

/* General responsive adjustments */
@media (max-width: 767px) {

    /* Header adjustments */
    .header-main-content {
        flex-direction: column;
        align-items: center;
        padding: 10px 15px;
    }

    .logo {
        margin-bottom: 10px;
        text-align: center;
        width: 100%;
    }

    .logo h1 {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    /* Mobile menu button positioning */
    .menu-toggle {
        position: absolute;
        top: 20px;
        right: 15px;
    }

    /* Call to action button */
    .header-cta {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 100;
        margin-top: 0;
    }

    .header-cta .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
        border-radius: 50px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    /* Hero section adjustments */
    .hero-content {
        padding: 30px 15px;
        max-width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    /* Button adjustments */
    .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    /* Free quote button */
    .gratis-offerte-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
        text-align: center;
    }

    /* Services button */
    .onze-diensten-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
        text-align: center;
    }

    /* Description text */
    .service-description {
        padding: 15px;
        font-size: 0.95rem;
        text-align: center;
    }
}

/* Small mobile devices */
@media (max-width: 375px) {
    .logo h1 {
        font-size: 1.3rem;
    }

    .logo span {
        display: block;
        margin-top: 5px;
    }

    .header-cta .btn {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }
}

/* Fix for the sticky header on mobile */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Fix for mobile navigation */
.main-nav {
    width: 100%;
}

@media (max-width: 767px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .main-nav.active {
        display: block;
    }

    .main-menu {
        flex-direction: column;
        padding: 0;
    }

    .main-menu li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .main-menu li a {
        padding: 15px;
        display: block;
        text-align: center;
    }

    /* Fix submenu */
    .sub-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        display: none;
        background-color: #f5f5f5;
    }

    .menu-item-has-children.active .sub-menu {
        display: block;
    }

    .menu-item-has-children>a:after {
        content: '\f107';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        margin-left: 5px;
    }
}