/*
* FP Webdevelopment - Main Stylesheet
* Author: FP Webdevelopment
* Version: 1.0
*/

/* ===== VARIABLES ===== */
:root {
    /* Colors */
    --primary-color: #186FBB;
    --primary-dark: #145A96;
    --primary-light: #2A84D3;
    --secondary-color: #f5f5f5;
    --dark-color: #212529;
    --text-color: #555555;
    --light-color: #ffffff;
    --border-color: #e9e9e9;
    --success-color: #28a745;
    --error-color: #dc3545;

    /* Nieuwe achtergrondkleuren */
    --bg-light: #f8f9fa;
    --bg-light-alt: #eef2f7;
    --bg-dark: #1a1d20;
    --bg-accent: #e9f0f8;
    --bg-primary-gradient: linear-gradient(135deg, var(--primary-color), var(--primary-dark));

    /* Typography */
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Roboto', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 15px;

    /* Transitions */
    --transition: all 0.3s ease;

    /* Shadows */
    --card-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

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

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

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

button,
input,
textarea,
select {
    font-family: var(--body-font);
    font-size: 16px;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.container2 {
    margin: 0 auto;
    padding: var(--container-padding);
    width:110%;
}


.section-padding {
    padding: var(--section-padding);
    position:relative;
    top:30px;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(24, 111, 187, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    font-size: 18px;
    color: var(--text-color);
}



/* ===== HEADER STYLES ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: transparent;
    padding: 20px 0;
    transition: var(--transition);
}

.header.sticky {
    background-color: var(--light-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
}

.logo .logo-img {
    height: 75px;
    width: auto;
}

.logo a {
    color: var(--primary-color);
}

.main-nav {
    display: flex;
    z-index:999;
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-link {
    padding: 10px 20px;
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

/* Modern Hamburger Menu Toggle */
.mobile-menu-toggle {
    display: none;
    z-index: 1;
}

.hamburger {
    padding: 15px;
    display: inline-block;
    cursor: pointer;
    background: transparent;
    border: 0;
    margin: 0;
    transition: all 0.3s ease;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    position: absolute;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

/* Squeeze animation */
.hamburger--squeeze .hamburger-inner {
    transition-duration: 0.1s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
    transition: top 0.1s 0.14s ease, opacity 0.1s ease;
}

.hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.14s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease, opacity 0.1s 0.14s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Hover effect */
.hamburger:hover .hamburger-inner,
.hamburger:hover .hamburger-inner::before,
.hamburger:hover .hamburger-inner::after {
    background-color: var(--primary-dark);
}

/* Focus state */
.hamburger:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(24, 111, 187, 0.3);
    border-radius: 4px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    padding: 180px 0 120px;
    background: var(--bg-light-alt);
    overflow: hidden;
    z-index: 1;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 0 0 50%;
    max-width: 50%;
}

.hero-content h1 {
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 0 0 45%;
    max-width: 45%;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background-color: var(--bg-light);
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: var(--primary-light);
}

.service-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.service-header h3 {
    margin-bottom: 10px;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.service-price .price-disclaimer {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-color);
    opacity: 0.8;
    display: block;
    margin-top: 2px;
    line-height: 1.2;
}

.service-description {
    margin-bottom: 15px;
}

.service-pages {
    font-weight: 500;
    margin-bottom: 20px;
}

.service-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.service-cta {
    margin-top: auto;
    margin: 0 auto;
}

.additional-features {
    text-align: center;
    padding: 30px;
    background-color: var(--bg-accent);
    border-radius: 10px;
    margin-top: 30px;
    border: 1px solid rgba(24, 111, 187, 0.1);
}

.additional-features h3 {
    margin-bottom: 15px;
}

.additional-features p {
    margin-bottom: 20px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background-color: var(--bg-light-alt);
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 0 0 45%;
    max-width: 45%;
}

.about-content {
    flex: 0 0 50%;
    max-width: 50%;
}

.about-content .section-header {
    text-align: left;
}

.about-content .section-header h2::after {
    left: 0;
    transform: none;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.feature {
    text-align: center;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature h4 {
    margin-bottom: 10px;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--bg-primary-gradient);
    padding: 80px 0;
    color: var(--light-color);
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-item h4 {
    color: var(--light-color);
    font-size: 1.25rem;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background-color: var(--bg-light);
}

.process-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: var(--hover-shadow);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 10px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background-color: var(--bg-light-alt);
}

/* Testimonial container voor de slider en navigatiepijlen */
.testimonial-container {
    position: relative;
    width: 100%;
    padding: 0 40px;
    margin-bottom: 40px;
}

.testimonial-slider {
    padding-bottom: 60px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: auto;
}

.testimonial-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    height: 100%;
    border: 1px solid var(--border-color);
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: #ffc107;
    margin-right: 2px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding: 0 20px;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-light);
    position: absolute;
}

.testimonial-text::before {
    left: 0;
    top: -10px;
}

.testimonial-text::after {
    right: 0;
    bottom: -10px;
}

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-color);
    font-size: 14px;
}

.swiper-pagination-bullet {
    background-color: var(--primary-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
}

/* Aangepaste navigatiepijlen */
.custom-nav-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.custom-prev-button,
.custom-next-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-primary-gradient);
    color: var(--light-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    pointer-events: auto;
}

.custom-prev-button {
    margin-left: -25px;
}

.custom-next-button {
    margin-right: -25px;
}

.custom-prev-button:hover,
.custom-next-button:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

.custom-prev-button:focus,
.custom-next-button:focus {
    outline: none;
}

.custom-prev-button i,
.custom-next-button i {
    font-size: 20px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background-color: var(--bg-light);
}

/* Succesmelding voor contactformulier */
.form-success-message {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 600px;
    margin: 40px auto;
    border: 1px solid rgba(40, 167, 69, 0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.form-success-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
}

.form-success-message.animate {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.form-success-message .success-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-block;
    animation: pulse 2s infinite;
}

.form-success-message h3 {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 700;
}

.form-success-message p {
    color: var(--text-color);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Spinner animatie voor laad-icoontje */
.spinner-rotate {
    animation: spinner-rotate 1s linear infinite;
}

@keyframes spinner-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.contact-wrapper {
    display: flex;
    gap: 30px;
}

.contact-info {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border: 1px solid var(--border-color);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.contact-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-card h3 {
    margin-bottom: 5px;
    font-size: 1.25rem;
}

.contact-form {
    flex: 0 0 55%;
    max-width: 55%;
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.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: 5px;
    background-color: var(--light-color);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.1);
}

.error-message {
    color: var(--error-color);
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--error-color);
}


.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}


.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info li i {
    color: var(--primary-color);
    margin-top: 5px;
}



.privacy-content {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--card-shadow);
}

.privacy-section h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 1.75rem;
}

.privacy-section h3 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 1.35rem;
}

.privacy-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-section ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.terms-content {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--card-shadow);
}

.terms-section h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 1.75rem;
}

.terms-section h3 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 1.35rem;
}

.terms-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.terms-section ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

/* Footer Styles */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 0;
    font-size: 15px;
    line-height: 1.6;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col {
    padding: 0 15px;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #3498db;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 5px 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
    padding-left: 0;
}

.footer-links a:hover::after {
    width: 100%;
}

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

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info i {
    color: #3498db;
    margin-right: 15px;
    font-size: 18px;
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #3498db;
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    color: #bdc3c7;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    position: relative;
    left: -5%;
}

.footer-bottom p {
    margin: 0;
    padding: 5px 0;
}

.footer-bottom a {
    color: #bdc3c7;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 5px 0;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.footer-bottom a:hover {
    color: #3498db;
}

.footer-bottom a:hover::after {
    width: 100%;
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-col {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* Social Share Buttons */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.share-label {
    font-size: 14px;
    color: #666;
    margin-right: 5px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.share-btn i {
    line-height: 1;
}

/* Platform-specific colors */
.share-btn.facebook { background-color: #3b5998; }
.share-btn.twitter { background-color: #1da1f2; }
.share-btn.linkedin { background-color: #0077b5; }
.share-btn.whatsapp { background-color: #25d366; }
.share-btn.email { background-color: #6c757d; }

/* Floating Share Button */
.float-share {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
}

.float-share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.float-share-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.float-share-btn i {
    font-size: 20px;
}

/* Cookie Consent Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    display: none;
    border-top: 3px solid var(--primary-color);
}

#cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent-content {
    flex: 1;
    min-width: 280px;
}

.cookie-consent-content h3 {
    margin: 0 0 10px 0;
    color: var(--heading-color);
    font-size: 1.2rem;
}

.cookie-consent-content p {
    margin: 0 0 15px 0;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-consent-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.cookie-consent-content a:hover {
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

#accept-cookies {
    background-color: var(--primary-color);
    color: white;
}

#accept-cookies:hover {
    background-color: var(--primary-dark);
}

#customize-cookies, #reject-cookies {
    background-color: #f0f0f0;
    color: var(--text-color);
}

#customize-cookies:hover, #reject-cookies:hover {
    background-color: #e0e0e0;
}

#save-preferences {
    background-color: var(--primary-color);
    color: white;
    margin-top: 15px;
}

#save-preferences:hover {
    background-color: var(--primary-dark);
}

.cookie-settings {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    width: 100%;
}

#cookie-consent-banner.show-settings .cookie-settings {
    display: block;
}

.cookie-setting-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.cookie-setting-item input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 5px;
}

.cookie-setting-item label {
    flex: 1;
}

.cookie-setting-item h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    color: var(--heading-color);
}

.cookie-setting-item p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-consent-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-consent-content {
        text-align: left;
    }
}

.float-share-options {
    position: absolute;
    right: -5px;
    bottom: 70px;
    background: white;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.float-share-options.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.share-option:hover {
    transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .share-buttons {
        justify-content: center;
    }
    
    .float-share {
        right: 15px;
        bottom: 15px;
    }
}

/* ===== SCROLL TO TOP BUTTON ===== */
#scroll-to-top {
    position: fixed;
    right: 30px;
    bottom: 90px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    outline: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

#scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

#scroll-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

.mobile-close-btn {
    display:none;
}