* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cappuccino color palette */
    --primary: #070a2b;       /* navy blue */
    --secondary: #7B5E57;     /* mocha */
    --accent: #fff71b;        /* caramel */
    --background: #f5eee2;    /* steamed milk */
    --white: #FFFAF3;         /* warm white foam */
    --text-dark: #2B211F;     /* rich coffee text */
    --text-light: #7A6A64;    /* soft latte text */
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
    overflow-x: hidden;
}
/*
.accentBackground {
    background-color: #201d1d;
}
*/
/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--primary);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.business-card {
    min-width: auto;
    max-width: 550px;
    min-height: auto;
    height: 300px;
    background: url('Images/IMG_7618.jpg') no-repeat center/contain;
}
nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    padding-right: 1rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(59, 47, 47, 0.5), rgba(123, 94, 87, 0.5)), url('Images/IMG_2452.png') center/cover;
    backdrop-filter: blur(20px);
    z-index: 1;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*Background image at the very top of the page*/
   /* background: url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?w=1920&q=80') center/cover;*/
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.credentials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.credential-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator::before {
    content: '↓';
    font-size: 2rem;
    color: var(--white);
    opacity: 0.8;
}

/* Sections */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/*
A “Zoom-Safe” Spacing Checklist

✅ Use gap, not margins
✅ Use rem, ch, %
✅ Use clamp() for padding
✅ Wrap content in max-width containers
❌ Avoid px spacing
❌ Avoid translate() for layout
❌ Avoid min-width
❌ Avoid mixing unit systems
*/
/* Services Section */
#services {
    max-width: none;
    width: 100%;
    margin: 0;
    padding-left: 90px;
    padding-right: 90px;
}

#services .section-title,
#services .section-subtitle {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    align-items: flex-start;
    transition: margin-left 0.2s ease, max-width 0.1s ease;
}

.service-card {
    background-color: var(--white);
    border-radius: 16px;
    width: min(80vw, 1100px);
    max-height: clamp(360px,4vw,480px);
            min-height: clamp(300px, 45vw, 450px);
        min-width: clamp(450px, 45vw, 600px);
    display: flex;
    margin-left: 0;
    position: relative;
    align-items: stretch;
    justify-content: space-between;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    align-self: flex-start;
}


.picture-right {
    display: flex;
    justify-content: flex-end;
    margin-left:auto;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* crops nicely instead of stretching */
  display: block;
}

.service-image-wrap {
  width: 520px;          /* desktop image size */
  min-height: clamp(150px, 20vw, 250px);
  overflow: hidden;
  border-radius: 16px;   /* optional */
}

.service-content {
    flex: 1;
    min-width: 0;
    text-align: left;
    /*padding: 15px 20px 0px 20px*/
    padding: 20px 24px;
}

.service-padding-fix {
    padding-left: -15px;
}
.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: var(--primary) 1px solid;
    font-size: 2.5rem;
    z-index: 5;
}
/* OLD
.service-card h3 {
    font-size: clamp(1.1rem, 1.6vw, 1.5rem);
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 0.75rem;  slightly smaller 
    font-weight: 600;
}
*/
.service-card h3 {
  display: -webkit-box;
  overflow: hidden;
  font-size: 1.5rem;
}
.service-card p {
    color: var(--text-light);
  display: -webkit-box;
  overflow: hidden;
  font-size: clamp(0.8rem, 3vw, 1rem);
}

/* Why Choose Us Section */
.why-choose-us {
    background: var(--white);
    border-radius: 30px;
    padding: 4rem 2rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.feature-item h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Gallery Section - Before/After */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.before-after-container {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.before-after-container.visible {
    opacity: 1;
    transform: scale(1);
}

.before-after-wrapper {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    cursor: grab;
    user-select: none;
}

.before-after-wrapper:active {
    cursor: grabbing;
}

.before-image,
.after-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.before-image {
    position: relative;
    z-index: 1;
}

.after-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    transition: width 0.25s ease-out;
}

.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    transition: width 0.25s ease-out;
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
    cursor: ew-resize;
    transition: left 0.1s ease-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--white);
    transform: translateX(-50%);
    z-index: 2;
}

.slider-arrow {
    display: flex;
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: bold;
    user-select: none;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    width: 1.5rem;
    text-align: center;
}

.slider-handle:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    transform: translate(-50%, -50%) scale(1.1);
}

.before-after-label {
    position: absolute;
    top: 20px;
    padding: 0.5rem 1.5rem;
    background: rgba(59, 47, 47, 0.85);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 25px;
    z-index: 4;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.before-label {
    left: 20px;
}

.after-label {
    right: 20px;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 30px;
    padding: 4rem 2rem;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    font-size: 1.1rem;
    position: absolute;
    bottom: 1rem;
    left: 1rem;
}

/* Contact Section */
.contact-section {
    background: var(--white);
    border-radius: 30px;
    padding: 4rem 2rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary), rgb(134, 52, 0));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.contact-form {
    background: var(--background);
    padding: 2.5rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid transparent;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 138, 99, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(59, 47, 47, 0.3);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

#form-message {
    padding: 1rem;
    border-radius: 10px;
    font-size: 1rem;
    line-height: 1.5;
}

#form-message[style*="color: #4CAF50"] {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4CAF50;
}

#form-message[style*="color: #f44336"] {
    background: rgba(244, 67, 54, 0.1);
    border: 2px solid #f44336;
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent);
    transform: translateY(-3px);
    transition: transform 0.2s ease;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}


/* Responsive Design MIDDLE*/
@media (max-width: 1100px) {
    .credentials { 
        display: flex; 
        align-items: center;
        flex-direction: row;
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(59, 47, 47, 0.98);
        padding: 0 2rem;
        max-height: 0;
        opacity: 0;
        transform: translateY(-8px);
        overflow: hidden;
        pointer-events: none;
        transition: max-height 0.25s ease, opacity 0.2s ease, transform 0.25s ease, padding 0.25s ease;
    }

    .mobile-menu-toggle {
        display: block;
    }

    nav.nav-open .nav-links {
        padding: 2rem;
        max-height: 400px;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .hero {
        min-height: 500px;
    }

    .credentials {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        max-height: none;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 0;
        min-height: clamp(300px, 45vw, 450px);
        width: 700px;
        border-radius: 16px;
    }
    .service-card p {
        color: var(--text-light);
    display: -webkit-box;
    overflow: hidden;
    font-size: clamp(1rem, 1.1vw, 1.5rem);
    }
    .service-content {
        text-align: left;
        order: 1;
    }
    .service-image-wrap {   
        border-radius: 16px;
        width: 100%;
        height: 500px;
    }
    .service-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .before-after-label {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    section {
        padding: 3rem 1.5rem;
    }
}

/* ===============================
   Photo Gallery Slider Section
   =============================== */

#photo-gallery {
    margin-top: 0;
}
.before-after-container {
    min-width: clamp(100px, 1vw, 150px);
    min-height: clamp(100px, 1vw, 150px);
}

.gallery-slider-container {
    position: relative;
    margin: 3rem auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    background: var(--white);
}

.gallery-slider {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slider img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* NO ZOOM */
    background: var(--background);
    transition: opacity 0.4s ease;
}

/* Navigation buttons */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.35);
    color: white;
    border: none;
    width: 55px;
    height: 55px;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.2s ease;
    z-index: 5;
}

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.55);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.left {
    left: 15px;
}

.gallery-nav.right {
    right: 15px;
}

/* Responsive Design */
@media (max-width: 800px) {
    .credentials { align-items: center; }
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(59, 47, 47, 0.98);
        padding: 0 2rem;
        max-height: 0;
        opacity: 0;
        transform: translateY(-8px);
        overflow: hidden;
        pointer-events: none;
        transition: max-height 0.25s ease, opacity 0.2s ease, transform 0.25s ease, padding 0.25s ease;
    }

    .mobile-menu-toggle {
        display: block;
    }

    nav.nav-open .nav-links {
        padding: 2rem;
        max-height: 400px;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .hero {
        min-height: 500px;
    }

    .credentials {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    #services {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        max-height: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        border-radius: 0;
        min-height: clamp(300px, 45vw, 450px);
        min-width: clamp(450px, 45vw, 600px);
        border-radius: 16px;
    }

    .service-content {
        text-align: left;
        order: 1;
    }
    .service-image-wrap {   
        border-radius: 16px;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }
    .service-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .before-after-label {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    section {
        padding: 3rem 1.5rem;
    }
}

/* ===============================
   Photo Gallery Slider Section
   =============================== */

#photo-gallery {
    margin-top: 0;
}

.gallery-slider-container {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    background: var(--white);
}

.gallery-slider {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slider img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* NO ZOOM */
    background: var(--background);
    transition: opacity 0.4s ease;
}

/* Navigation buttons */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.35);
    color: white;
    border: none;
    width: 55px;
    height: 55px;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.2s ease;
    z-index: 5;
}

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.55);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.left {
    left: 15px;
}

.gallery-nav.right {
    right: 15px;
}


/* Mobile adjustments */
@media (max-width: 500px) {
    .gallery-slider {
        height: 300px;
    }

    .gallery-nav {
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
    }

    .picture-right {
        flex-direction: column;
    }

    .picture-left {
        flex-direction: column;
    }

    .service-image-wrap {   
        border-radius: 16px;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }
    .service-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .service-card {
        border-radius: 16px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        min-height: clamp(450px, 4vw, 600px);
        min-width: 0;
        max-height: none;
    }
    
    #services {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }


/* ===============================
   Photo Gallery Slider Section
   =============================== */

#photo-gallery {
    margin-top: 0;
}

.gallery-slider-container {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    background: var(--white);
}

.gallery-slider {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slider img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* NO ZOOM */
    background: var(--background);
    transition: opacity 0.4s ease;
}

/* Navigation buttons */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.35);
    color: white;
    border: none;
    width: 55px;
    height: 55px;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.2s ease;
    z-index: 5;
}

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.55);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.left {
    left: 15px;
}

.gallery-nav.right {
    right: 15px;
}

}
@media(min-width: 1824px) {
    .services-grid {
        max-width: 1824px;
    }

    .picture-left {
        margin-left: 40px;
    }
}
