/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
    text-decoration: none;
    color: inherit;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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



.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu a {
    color: #2f1b14 !important;
    transition: color 0.3s ease, transform 0.3s ease, background-color 0.3s ease, padding 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
}

.nav-menu a:visited {
    color: #2f1b14 !important;
}

.nav-menu a:hover {
    color: #8b4513 !important;
    transform: translateY(-2px);
    background-color: rgba(139, 69, 19, 0.1);
    border-radius: 5px;
    padding: 5px 10px;
}

.nav-menu a:active {
    color: #8b4513 !important;
}

.nav-menu a:focus {
    color: #2f1b14 !important;
}

.nav-link {
    text-decoration: none;
    color: #2f1b14 !important;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease, background-color 0.3s ease, padding 0.3s ease;
    position: relative;
    padding: 5px 10px;
    border-radius: 5px;
}

.nav-link:hover {
    color: #8b4513 !important;
    transform: translateY(-2px);
    background-color: rgba(139, 69, 19, 0.1);
    border-radius: 5px;
    padding: 5px 10px;
}

.nav-link:visited {
    color: #2f1b14 !important;
}

.nav-link:active {
    color: #8b4513 !important;
}

.nav-link:focus {
    color: #2f1b14 !important;
    outline: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #8b4513;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    background-color: #8b4513;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #2f1b14;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fbe3d7 0%, #f5deb3 50%, #d2691e 100%);
    color: #2f1b14;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #8b4513;
    color: #fff;
}

.btn-primary:hover {
    background-color: #2f1b14;
    color: #fff;
    border-color: #2f1b14;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #8b4513;
    border-color: #8b4513;
}

.btn-secondary:hover {
    background-color: #8b4513;
    color: #fff;
    transform: translateY(-2px);
}

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

.hero-logo-container {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
}

.hero-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2f1b14;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background-color: #f9fafb;
}

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

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2f1b14;
}

.about-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #6b7280;
    font-weight: 500;
}

.about-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #fbe3d7 0%, #f5deb3 50%, #d2691e 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbe3d7 0%, #f5deb3 50%, #d2691e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2f1b14;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Prices Preview Section */
.prices-preview {
    background-color: #f9fafb;
    padding: 60px 0;
}

.prices-preview .section-header {
    text-align: center;
    margin-bottom: 0;
}

.prices-preview .section-header p {
    margin-bottom: 3.4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.prices-preview .btn {
    margin-top: 2.4rem;
}

.prices-divider {
    width: 60px;
    height: 2px;
    background-color: #8b4513;
    margin: 2rem auto;
    border-radius: 1px;
}

/* Portfolio Section */
.portfolio {
    background-color: white;
}

/* Slideshow Styles */
.slideshow-container {
    max-width: 800px !important;
    margin: 0 auto !important;
    position: relative !important;
    background: white !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
    border: 3px solid #8b4513 !important;
    width: 100% !important;
    max-width: 800px !important;
    height: 500px !important;
    max-height: 500px !important;
    display: block !important;
}

.slideshow-wrapper {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 500px !important;
    display: block !important;
    overflow: hidden !important;
}

.slide {
    display: none !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    position: relative !important;
    overflow: hidden !important;
}

.slide.active {
    display: block !important;
}

.slide-image {
    height: 500px !important;
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    position: relative !important;
}

.slide-img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1 !important;
    box-sizing: border-box !important;
}

/* Additional constraint for images in slideshow */
.slideshow-container img {
    max-width: 100% !important;
    max-height: 500px !important;
    width: auto !important;
    height: auto !important;
    object-fit: cover !important;
}

.slideshow-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #fbe3d7 0%, #f5deb3 100%);
    border-top: 2px solid #8b4513;
}

.prev-btn, .next-btn {
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
    color: white;
    border: 2px solid #2f1b14;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.prev-btn:hover, .next-btn:hover {
    background: linear-gradient(135deg, #2f1b14 0%, #8b4513 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.prev-btn:active, .next-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(139, 69, 19, 0.3);
}

.slide-indicators {
    display: flex;
    gap: 0.5rem;
}

.dot {
    height: 14px;
    width: 14px;
    background-color: #d1d5db;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background-color: #8b4513;
    border-color: #2f1b14;
    transform: scale(1.2);
}

.dot:hover {
    background-color: #d2691e;
    transform: scale(1.1);
}

/* Legacy portfolio styles for other sections */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    height: 250px;
    background: linear-gradient(135deg, #fbe3d7 0%, #f5deb3 50%, #d2691e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2f1b14;
}

.portfolio-content p {
    color: #6b7280;
}

/* Contact Section */
.contact {
    background-color: #f9fafb;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fbe3d7 0%, #f5deb3 50%, #d2691e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2f1b14;
}

.contact-item p {
    color: #6b7280;
}

.whatsapp-link {
    color: #8b4513;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.whatsapp-link:hover {
    color: #2f1b14;
    text-decoration: underline;
}

.contact-link {
    color: #8b4513;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #2f1b14;
    text-decoration: underline;
}

.map-container {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.map-container h3 {
    color: #2f1b14;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.map-address {
    margin-bottom: 2rem;
}

.map-address p {
    color: #6b7280;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.map-address p:first-child {
    color: #2f1b14;
    font-weight: 600;
    font-size: 1.2rem;
}

.map-link .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.map-link .btn i {
    font-size: 1.1rem;
}

.map-iframe-container {
    margin: 1.5rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-iframe-container iframe {
    border-radius: 10px;
    width: 100%;
    height: 300px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b4513;
}

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

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d2691e;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #d2691e;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #d1d5db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.5rem 0;
        padding: 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.75rem 1rem;
        margin: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

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

    .hero-buttons {
        justify-content: center;
    }

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

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

    .slideshow-container {
        margin: 0 1rem;
        height: 300px !important;
        max-height: 300px !important;
    }

    .slideshow-wrapper {
        height: 300px !important;
        max-height: 300px !important;
    }

    .slide-image {
        height: 300px !important;
        max-height: 300px !important;
    }

    .slideshow-container img {
        max-height: 300px !important;
    }

    .slideshow-controls {
        padding: 1rem 1.5rem;
    }

    .prev-btn, .next-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .dot {
        height: 12px;
        width: 12px;
    }

    .map-iframe-container iframe {
        height: 250px;
    }

    .hero-logo-container {
        width: 300px;
        height: 300px;
    }

    .logo-img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .hero-logo-container {
        width: 250px;
        height: 250px;
    }

    .logo-img {
        height: 35px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 70px;
}

/* Prices Page Styles */
.prices {
    padding: 80px 0;
    background-color: #f9fafb;
}

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

.price-section {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.price-section h3 {
    color: #8b4513;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 50%, #fbe3d7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.price-item:hover {
    background: #e2e8f0;
}

.breed {
    font-weight: 500;
    color: #2f1b14;
    flex: 1;
}

.price {
    font-weight: 600;
    color: #8b4513;
    font-size: 0.95rem;
    white-space: nowrap;
    margin-left: 1rem;
}

.price-note {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    margin-top: 2rem;
}

.note-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.note-content i {
    color: #8b4513;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.note-content h4 {
    color: #2f1b14;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.note-content p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.note-content h5 {
    color: #2f1b14;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
}

.note-content h5:first-child {
    margin-top: 0;
}

.note-content ul {
    margin: 0 0 1rem 0;
    padding-left: 1.5rem;
}

.note-content li {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Simple Slideshow Styles */
.simple-slideshow {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #8b4513;
}

.slideshow-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slideshow-image.active {
    opacity: 1;
}

.slideshow-controls-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #fbe3d7 0%, #f5deb3 100%);
    border-top: 2px solid #8b4513;
}

.prev-simple, .next-simple {
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
    color: white;
    border: 2px solid #2f1b14;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.prev-simple:hover, .next-simple:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.dots-simple {
    display: flex;
    gap: 0.5rem;
}

.dot-simple {
    height: 14px;
    width: 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #d1d5db;
    border: 2px solid transparent;
}

.dot-simple.active {
    background-color: #8b4513;
    border: 2px solid #2f1b14;
    transform: scale(1.2);
}

.dot-simple:hover {
    background-color: #8b4513;
    transform: scale(1.1);
}

/* Mobile responsive styles for slideshow */
@media (max-width: 768px) {
    .simple-slideshow {
        max-width: 100%;
        margin: 0 1rem;
        border-radius: 10px;
    }
    
    .slideshow-image-container {
        height: 300px;
    }
    
    .slideshow-controls-simple {
        padding: 1rem;
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .prev-simple, .next-simple {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        padding: 0.5rem;
    }
    
    .dots-simple {
        order: 0;
        margin: 0;
    }
    
    .dot-simple {
        height: 12px;
        width: 12px;
    }
}

@media (max-width: 480px) {
    .simple-slideshow {
        margin: 0 0.5rem;
        border-radius: 8px;
    }
    
    .slideshow-image-container {
        height: 250px;
    }
    
    .slideshow-controls-simple {
        padding: 0.75rem;
        flex-direction: row;
        gap: 0.25rem;
    }
    
    .prev-simple, .next-simple {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .dot-simple {
        height: 10px;
        width: 10px;
    }
}

/* Active nav link */
.nav-link.active {
    color: #8b4513 !important;
}

/* Huisregels Section */
.huisregels-section {
    background-color: #f9fafb;
    padding: 80px 0;
}

.section-icon {
    background: linear-gradient(135deg, #fbe3d7 0%, #f5deb3 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: #8b4513;
    border: 3px solid #8b4513;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
}

.huisregels-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.huisregel-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #fbe3d7;
    display: flex;
    gap: 1.2rem;
    transition: all 0.3s ease;
}

.huisregel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #8b4513;
}

.huisregel-icon {
    background: linear-gradient(135deg, #fbe3d7 0%, #f5deb3 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid #8b4513;
}

.huisregel-icon i {
    font-size: 1.5rem;
    color: #8b4513;
}

.huisregel-text h3 {
    color: #2f1b14;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.huisregel-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.huisregel-text li {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.huisregel-text li:before {
    content: "•";
    color: #8b4513;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.huisregels-note {
    background: linear-gradient(135deg, #fbe3d7 0%, #f5deb3 100%);
    border: 2px solid #8b4513;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.1);
}

.huisregels-note .note-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.huisregels-note .note-content i {
    color: #8b4513;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.huisregels-note .note-content h4 {
    color: #2f1b14;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.huisregels-note .note-content p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Mobile responsive for huisregels */
@media (max-width: 768px) {
    .huisregels-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .huisregel-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .huisregel-icon {
        align-self: center;
    }
    
    .huisregels-note {
        padding: 1.5rem;
    }
}

.nav-link.active::after {
    width: 100%;
    background-color: #8b4513;
}

/* Responsive design for prices */
@media (max-width: 768px) {
    .prices-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .price {
        margin-left: 0;
        align-self: flex-end;
    }
    
    .note-content {
        flex-direction: column;
        text-align: center;
    }
}
