/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #e2636a;
    --primary-dark: #6d451f;
    --secondary: #e6cccd;
    --accent: blur #8b5a2b;
    --text: #333;
    --light-text: #666;
    --white: #ffffff;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
    background-color: var(--secondary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animation Classes */
.animated-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animated-section.slide-from-left {
    transform: translateX(-100px);
}

.animated-section.slide-from-right {
    transform: translateX(100px);
}

.animated-section.slide-from-top {
    transform: translateY(-100px);
}

.animated-section.visible {
    opacity: 1;
    transform: translate(0, 0) !important;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.8s ease forwards;
}

.logo-image {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text span {
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.logo-text .main-title {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.logo-text .subtitle {
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 200;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
    opacity: 0;
    transform: translateY(-20px);
    animation: slideInDown 0.8s ease forwards;
}

nav ul li:nth-child(1) { animation-delay: 0.1s; }
nav ul li:nth-child(2) { animation-delay: 0.2s; }
nav ul li:nth-child(3) { animation-delay: 0.3s; }
nav ul li:nth-child(4) { animation-delay: 0.4s; }
nav ul li:nth-child(5) { animation-delay: 0.5s; }
nav ul li:nth-child(6) { animation-delay: 0.6s; }
nav ul li:nth-child(7) { animation-delay: 0.7s; }

nav ul li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
    font-size: 0.95rem;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

.admin-link {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 8px 15px;
    border-radius: 20px;
    transition: background-color 0.3s;
}

.admin-link:hover {
    background-color: var(--primary-dark);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url("images/mainphoto.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 200px 0 120px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.3s;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.7s;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    transform: translateY(0);
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    transform: translateY(0);
    display: inline-block;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ===== UPDATED SERVICES SECTION STYLES ===== */
.services {
    padding: 100px 5%;
    background: #f7f7f7;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
    color: var(--primary);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.25s ease, box-shadow 0.3s ease;
    background: #fff;
    height: 300px;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: white;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    pointer-events: none;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.service-content h3 {
    margin-bottom: 5px;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.service-content p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.95);
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}
/* ===== END OF SERVICES SECTION STYLES ===== */

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--secondary);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--light-text);
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonials {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
}

.testimonial {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-width: 300px;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    border: 1px solid rgba(139, 90, 43, 0.1);
}

.testimonial:hover {
    transform: translateY(-10px);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--light-text);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    animation: float 3s ease-in-out infinite;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(232, 218, 222, 0.9), rgba(222, 136, 173, 0.9)),
                url(images/sociallink.png);
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 1;
    transform: translateY(30px);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity:0;
    transform: translateY(30px);
}

.cta-section .btn-primary {
    opacity: 100;
    transform: translateY(30px);
}

/* Footer */
footer {
    background-color: var(--text);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
    opacity: 0;
    transform: translateX(-20px);
}

.footer-column:nth-child(1) ul li { transition-delay: 0.1s; }
.footer-column:nth-child(2) ul li { transition-delay: 0.2s; }
.footer-column:nth-child(3) ul li { transition-delay: 0.3s; }
.footer-column:nth-child(4) ul li { transition-delay: 0.4s; }

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(1);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: scale(1.1) rotate(5deg);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 1001;
}

.mobile-menu-btn:hover {
    transform: rotate(90deg);
}

/* Before & After Gallery Section */
.before-after-section {
    padding: 100px 0;
    background-color: var(--white);
}

.comparison-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(50px);
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 500px;
    cursor: col-resize;
}

.comparison-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}

.before-image {
    z-index: 2;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.after-image {
    z-index: 1;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: var(--white);
    z-index: 3;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-handle::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: ew-resize;
}

.slider-handle::after {
    content: "↔";
    color: white;
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    z-index: 4;
}

.comparison-container .before-label,
.comparison-container .after-label {
    position: absolute;
    top: 20px;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.comparison-container .before-label {
    left: 20px;
    background: #e74c3c;
    color: white;
}

.comparison-container .after-label {
    right: 20px;
    background: #2ecc71;
    color: white;
}

/* Collage Grid */
.collage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 50px;
    opacity: 0;
    transform: translateY(30px);
}

.collage-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 250px;
    transition: all 0.5s ease;
}

.collage-item:nth-child(1) { grid-column: span 2; }
.collage-item:nth-child(2) { grid-column: span 2; }
.collage-item:nth-child(3) { grid-column: span 1; }
.collage-item:nth-child(4) { grid-column: span 1; }
.collage-item:nth-child(5) { grid-column: span 2; }

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.collage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.collage-item:hover img {
    transform: scale(1.1);
}

.collage-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.collage-item:hover .collage-overlay {
    transform: translateY(0);
}

.collage-badge {
    position: absolute;
    top: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.before-badge {
    left: 15px;
    background: #e74c3c;
    color: white;
}

.after-badge {
    right: 15px;
    background: #2ecc71;
    color: white;
}

/* Gallery Navigation */
.gallery-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(30px);
}

.nav-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(139, 90, 43, 0.2);
}

.nav-btn.active {
    background-color: var(--primary-dark);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.gallery-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--light-text);
    font-weight: 500;
}

/* Opening Hours Section */
.hours-section {
    background: linear-gradient(135deg, #f8f0eb, #f5eae4);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(184, 148, 133, 0.08);
    text-align: center;
    margin-top: 30px;
}

.hours-title {
    font-size: 2rem;
    color: #8a6e5e;
    margin-bottom: 25px;
    font-weight: 400;
}

.hours-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.hours-item {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    color: #5a4d3e;
}

.hours-item i {
    color: #b89485;
    margin-right: 15px;
    font-size: 1.3rem;
    width: 30px;
}

.hours-note {
    font-size: 1rem;
    color: #8a7b6d;
    font-style: italic;
    margin-top: 15px;
}

/* CTA Section - WITH ANIMATION BUT VISIBLE */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(232, 218, 222, 0.9), rgba(222, 136, 173, 0.9)),
                url(images/sociallink.png);
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    opacity: 1;
    transform: translateY(0);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: white;
    opacity: 1;
    transform: translateY(0);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta-section .btn-primary {
    opacity: 1;
    transform: translateY(0);
    display: inline-block;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Social CTA Styles - within CTA section */
.cta-section .social-cta {
    margin-top: 30px;
    text-align: center;
}

.cta-section .social-cta p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    opacity: 1;
    transform: translateY(0);
    color: white;
}

.cta-section .social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-section .social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    opacity: 1;
    transform: translateY(0);
}

.cta-section .social-btn.facebook {
    background-color: #1877f2;
    color: white;
}

.cta-section .social-btn.facebook:hover {
    background-color: transparent;
    border-color: white;
    color: white;
    transform: translateY(-3px);
}

.cta-section .social-btn.viber {
    background-color: #7360f2;
    color: white;
}

.cta-section .social-btn.viber:hover {
    background-color: transparent;
    border-color: white;
    color: white;
    transform: translateY(-3px);
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {  
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Styles - UPDATED with service section responsive */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    .about-image {
        order: -1;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .logo-text .main-title {
        font-size: 1.1rem;
    }

    .logo-image {
        height: 40px;
    }

    .comparison-slider {
        height: 400px;
    }

    .collage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collage-item:nth-child(1) { grid-column: span 2; }
    .collage-item:nth-child(2) { grid-column: span 2; }
    .collage-item:nth-child(3) { grid-column: span 1; }
    .collage-item:nth-child(4) { grid-column: span 1; }
    .collage-item:nth-child(5) { grid-column: span 2; }
    
    /* Service section tablet */
    .services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .header-content {
        flex-wrap: wrap;
    }

    nav {
        width: 100%;
        margin-top: 20px;
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--white);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        display: block;
        max-height: 500px;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    nav ul li {
        margin: 10px 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 180px 0 100px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service {
        transform: translateY(50px) !important;
    }

    .social-buttons {
        flex-direction: column;
        align-items: center;
    }

    .social-btn {
        width: 200px;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .logo-container {
        gap: 10px;
    }

    .logo-text {
        display: none;
    }

    .comparison-slider {
        height: 300px;
    }

    .collage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .collage-item {
        height: 200px;
    }

    .collage-item:nth-child(1),
    .collage-item:nth-child(2),
    .collage-item:nth-child(5) {
        grid-column: span 1;
    }

    .gallery-nav {
        flex-wrap: wrap;
    }

    .hours-section {
        padding: 30px 20px;
    }

    .hours-title {
        font-size: 1.8rem;
    }

    .hours-item {
        font-size: 1.1rem;
    }
}

/* Service section mobile */
@media (max-width: 768px) {
    .services {
        padding: 80px 20px;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
        margin: 0 auto;
    }

    .service-card {
        height: 280px;
        width: 100%;
    }

    .service-content {
        padding: 15px;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

    .service-content p {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .services {
        padding: 60px 20px;
    }
    
    .services-container {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        grid-template-columns: unset;
    }
    
    .services-container::-webkit-scrollbar {
        height: 6px;
    }
    
    .services-container::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 20px;
    }
    
    .service-card {
        min-width: 85%;
        flex: 0 0 auto;
        scroll-snap-align: start;
        height: 280px;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .logo-image {
        height: 35px;
    }

    .comparison-slider {
        height: 250px;
    }

    .collage-item {
        height: 180px;
    }

    .comparison-container .before-label,
    .comparison-container .after-label {
        padding: 5px 15px;
        font-size: 0.8rem;
    }

    .slider-handle::before {
        width: 40px;
        height: 40px;
    }

    .hours-section {
        padding: 25px 15px;
    }
    
    .services {
        padding: 60px 15px;
    }
    
    .service-card {
        min-width: 90%;
        height: 260px;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
    
    .service-content p {
        font-size: 12px;
    }
}




/* Service section mobile - VERTICAL LAYOUT */
@media (max-width: 768px) {
    .services {
        padding: 80px 20px;
    }

    .services-container {
        display: grid; /* Changed from flex to grid */
        grid-template-columns: 1fr; /* Single column */
        gap: 25px;
        max-width: 500px;
        margin: 0 auto;
        overflow-x: visible; /* Changed from auto to visible */
        padding-bottom: 0; /* Removed padding */
        scroll-snap-type: none; /* Disabled snap scrolling */
    }

    .service-card {
        min-width: 100%; /* Full width */
        flex: none; /* Removed flex properties */
        scroll-snap-align: none; /* Disabled snap */
        height: 280px;
        width: 100%;
        margin-bottom: 0; /* Removed margin */
    }

    .service-content {
        padding: 15px;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

    .service-content p {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .services {
        padding: 60px 20px;
    }
    
    .services-container {
        display: grid; /* Keep as grid, not flex */
        grid-template-columns: 1fr; /* Single column */
        gap: 20px;
        overflow-x: visible; /* No horizontal scroll */
        padding-bottom: 0;
        scroll-snap-type: none;
    }
    
    /* Remove scrollbar styles */
    .services-container::-webkit-scrollbar {
        display: none; /* Hide scrollbar */
    }
    
    .service-card {
        min-width: 100%; /* Full width */
        flex: none;
        scroll-snap-align: none;
        height: 280px;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 60px 15px;
    }
    
    .services-container {
        gap: 15px; /* Reduced gap for smaller screens */
    }
    
    .service-card {
        height: 260px;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
    
    .service-content p {
        font-size: 12px;
    }
}