/* ===== CSS Variables ===== */
:root {
    --primary-color: #5a7a7b;
    --primary-dark: #4a6465;
    --primary-light: #7a9a9b;
    --secondary-color: #8fa7a8;
    --accent-color: #e0eaea;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --off-white: #f5f8f8;
    --shadow: 0 4px 6px rgba(90, 122, 123, 0.1);
    --shadow-lg: 0 10px 25px rgba(90, 122, 123, 0.15);
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

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

ul {
    list-style: none;
}

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

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 200px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-img {
    height: 180px;
    width: 165px;
    object-fit: cover;
    object-position: center 15%;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    display: none;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 5px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid var(--accent-color);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 0.95rem;
}

.dropdown-menu a::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    background-size: 100px 100px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-content {
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background-color: var(--white);
    transform: scale(1.2);
}

/* ===== Sections ===== */
.section {
    padding: 100px 0;
}

.section-alt {
    background-color: var(--off-white);
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Behandelingen ===== */
.behandelingen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.behandeling-card {
    display: block;
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

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

.behandeling-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    height: 192px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.behandeling-icon img {
    width: 192px;
    height: 192px;
    object-fit: contain;
}

.behandeling-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.behandeling-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== Tarieven ===== */
.tarieven-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.tarieven-tabel {
    width: 100%;
    border-collapse: collapse;
}

.tarieven-tabel th,
.tarieven-tabel td {
    padding: 18px 25px;
    text-align: left;
}

.tarieven-tabel thead {
    background-color: var(--primary-color);
    color: var(--white);
}

.tarieven-tabel th {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
}

.tarieven-tabel tbody tr {
    border-bottom: 1px solid var(--accent-color);
}

.tarieven-tabel tbody tr:last-child {
    border-bottom: none;
}

.tarieven-tabel tbody tr:hover {
    background-color: var(--accent-color);
}

.tarieven-tabel td:last-child {
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
}

.tarieven-note {
    text-align: center;
    margin-top: 30px;
    color: var(--text-light);
    font-style: italic;
}

.grootte-titel {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.grootte-afbeelding {
    text-align: center;
    margin-bottom: 30px;
}

.grootte-container {
    position: relative;
    display: inline-block;
    max-width: 600px;
    width: 100%;
}

.grootte-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.grootte-hover-zone {
    position: absolute;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

.grootte-hover-zone:hover {
    background-color: rgba(90, 122, 123, 0.15);
}

.tooltip-text {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    min-width: 140px;
    height: 100%;
    background-color: rgba(90, 122, 123, 0.95);
    color: var(--white);
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.7rem;
    line-height: 1.4;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    white-space: nowrap;
}

.grootte-hover-zone:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}

/* Posities van de hover zones - verticale vakjes passend op de tabel */
.grootte-hover-zone.mini {
    left: 5%;
    top: 14%;
    width: 15.5%;
    height: 75%;
}

.grootte-hover-zone.klein {
    left: 23.5%;
    top: 14%;
    width: 15.5%;
    height: 75%;
}

.grootte-hover-zone.middel {
    left: 42%;
    top: 14%;
    width: 15.5%;
    height: 75%;
}

.grootte-hover-zone.groot {
    left: 60.5%;
    top: 14%;
    width: 15.5%;
    height: 75%;
}

.grootte-hover-zone.maxi {
    left: 79%;
    top: 14%;
    width: 15.5%;
    height: 75%;
}

@media (max-width: 768px) {
    .grootte-hover-zone::after {
        font-size: 0.75rem;
        padding: 8px 10px;
        white-space: normal;
        width: 150px;
        text-align: center;
    }
}

.grootte-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.grootte-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    padding: 20px;
    text-align: center;
    min-width: 120px;
}

.grootte-item:hover {
    background-color: var(--accent-color);
}

.grootte-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.grootte-naam {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.grootte-gewicht {
    color: var(--text-light);
    font-size: 0.9rem;
}

.behandeling-titel {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.behandeling-knoppen {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.behandeling-knop {
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    background-color: var(--white);
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.behandeling-knop:hover {
    background-color: var(--accent-color);
}

.behandeling-knop.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.prijzen-container {
    max-width: 500px;
    margin: 0 auto;
}

.prijzen-tabel {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.prijzen-tabel table {
    width: 100%;
    border-collapse: collapse;
}

.prijzen-tabel th,
.prijzen-tabel td {
    padding: 15px 20px;
    text-align: left;
}

.prijzen-tabel thead {
    background-color: var(--primary-color);
    color: var(--white);
}

.prijzen-tabel th {
    font-family: var(--font-heading);
    font-weight: 600;
}

.prijzen-tabel th:last-child {
    text-align: right;
}

.prijzen-tabel tbody tr {
    border-bottom: 1px solid var(--accent-color);
}

.prijzen-tabel tbody tr:last-child {
    border-bottom: none;
}

.prijzen-tabel tbody tr:hover {
    background-color: var(--accent-color);
}

.prijzen-tabel td:last-child {
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
}

#prijzen-puppy {
    background-color: transparent;
    box-shadow: none;
}

#prijzen-puppy .prijzen-tabel-blok {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.puppy-vervolg-titel {
    margin-top: 2rem;
    margin-bottom: 0.25rem;
    text-align: center;
    font-family: var(--font-heading);
}

.puppy-vervolg-subtekst {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.trimtype-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trimtype-knoppen {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.trimtype-knop {
    padding: 8px 16px;
    border: 2px solid var(--primary-color);
    background-color: var(--white);
    color: var(--primary-color);
    font-family: var(--font-body);
    font-size: 0.85rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trimtype-knop:hover {
    background-color: var(--accent-color);
}

.trimtype-knop.active {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ===== Over Ons ===== */
.over-ons-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.over-ons-tekst .section-title {
    text-align: left;
    margin-bottom: 25px;
}

.over-ons-tekst p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.over-ons-list {
    margin-top: 25px;
}

.over-ons-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
}

.over-ons-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.over-ons-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.over-ons-image img {
    width: 100%;
    max-width: 400px;
    height: 340px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.foto-caption {
    margin-top: 15px;
    font-style: italic;
    color: var(--text-light);
}

.image-placeholder {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: var(--shadow);
}

.image-placeholder span {
    font-size: 5rem;
    margin-bottom: 15px;
}

.image-placeholder p {
    font-style: italic;
    opacity: 0.8;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    font-family: var(--font-body);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-light);
}

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-icon-img {
    width: 28px;
    height: 28px;
    filter: invert(36%) sepia(15%) saturate(563%) hue-rotate(136deg) brightness(92%) contrast(89%);
}

.contact-item h4 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color);
}

.contact-item p,
.contact-item a {
    color: var(--text-light);
}

.contact-item a:hover {
    color: var(--primary-color);
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--accent-color);
    border-radius: 50%;
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* ===== Form Melding ===== */
.form-melding {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
}

.form-melding.succes {
    background-color: #e8f5e9;
    border: 1px solid #a5d6a7;
    color: #2e7d32;
}

.form-melding.fout {
    background-color: #fdecea;
    border: 1px solid #f5c6c6;
    color: #b71c1c;
}

/* ===== Contact Form ===== */
.contact-form {
    background-color: var(--off-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--accent-color);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.contact-form .btn {
    width: 100%;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    filter: brightness(1.1);
}

.footer p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .behandelingen-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .over-ons-content {
        gap: 40px;
    }

    .contact-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav {
        height: 85px;
    }

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

    .nav-menu {
        position: fixed;
        top: 85px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 30px 20px;
        gap: 0;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu li {
        border-bottom: 1px solid var(--accent-color);
    }

    .nav-menu a {
        display: block;
        padding: 15px 0;
    }

    .nav-menu a::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        border-bottom: none;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section {
        padding: 70px 0;
    }

    .behandelingen-grid {
        grid-template-columns: 1fr;
    }

    .over-ons-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .over-ons-tekst .section-title {
        text-align: center;
    }

    .over-ons-list li {
        text-align: left;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .tarieven-tabel th,
    .tarieven-tabel td {
        padding: 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .logo-text {
        display: block;
        font-size: 0.95rem;
    }
}

@media (max-width: 400px) {
    .logo-text {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .contact-form {
        padding: 25px;
    }

    .tarieven-tabel th,
    .tarieven-tabel td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }
}

/* ===== WhatsApp Button ===== */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-button:hover {
    background-color: #20ba5a;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
}

.whatsapp-text {
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 480px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        padding: 12px 15px;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-icon {
        width: 32px;
        height: 32px;
    }
}

/* ===== Modals ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 15px;
    height: 192px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon img {
    width: 192px;
    height: 192px;
    object-fit: contain;
}

.modal h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.modal > p {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.7;
}

.modal-details {
    background-color: var(--off-white);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.modal-details p {
    margin-bottom: 10px;
    color: var(--text-color);
}

.modal-details p:last-child {
    margin-bottom: 0;
}

.modal-btn {
    display: block;
    text-align: center;
}

/* ===== Instagram Sectie ===== */
.instagram-widget {
    margin: 40px 0 30px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    background-color: var(--accent-color);
    display: block;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

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

.instagram-post-overlay {
    position: absolute;
    inset: 0;
    background: rgba(90, 122, 123, 0.88);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .instagram-post-overlay {
    opacity: 1;
}

.instagram-post-icon {
    color: var(--white);
    margin-bottom: 12px;
    flex-shrink: 0;
}

.instagram-post-caption {
    color: var(--white);
    font-size: 0.82rem;
    text-align: center;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.instagram-post-video-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.55);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.72rem;
}

.instagram-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    color: var(--text-light);
    font-style: italic;
}

.instagram-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 0;
    color: var(--text-light);
}

.instagram-error a {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.eapps-widget-toolbar,
.eapps-instagram-feed-footer,
.eapps-link,
[class*="eapps-widget-toolbar"],
[class*="eapps-instagram-feed-footer"],
a[href*="elfsight.com"],
a[href*="elfsightcdn.com"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

.instagram-cta {
    text-align: center;
    margin-top: 10px;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
    color: var(--white);
}

.instagram-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .modal {
        padding: 30px 20px;
    }

    .modal h3 {
        font-size: 1.5rem;
    }
}
