:root {
    --primary-color: #0d3b66;
    /* Deep Marine Blue - from Logo Bathtub */
    --primary-light: #376996;
    /* Lighter blue for hover states */
    --secondary-color: #f4a261;
    /* Sandy Orange - Warmth/Dog fur contrast */
    --accent-color: #eef4f9;
    /* Light Blue-Grey - Clean background */
    --text-color: #2c3e50;
    /* Dark Blue-Grey text */
    --text-light: #5f7186;
    --white: #FFFFFF;
    --box-shadow: 0 4px 15px rgba(13, 59, 102, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--accent-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Fredoka', sans-serif;
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    max-height: 55px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
}

.brand-sub {
    font-family: 'Nunito', sans-serif;
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 400px) {
    .logo-img {
        max-height: 45px;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .brand-sub {
        font-size: 0.7rem;
    }
}

.nav-desktop {
    display: none;
}

.btn-header {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-header:hover {
    background-color: #e66a3c;
    transform: translateY(-2px);
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: block;
    color: var(--primary-color);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: var(--white);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    text-align: center;
}

.mobile-menu a {
    padding: 0.8rem;
    color: var(--text-color);
    font-weight: 500;
}

.mobile-menu.active {
    display: flex;
}

/* Hero Section */
.hero {
    padding-top: 100px;
    /* Header height offset */
    padding-bottom: 4rem;
    background: linear-gradient(135deg, #e0f7fa 0%, #ffffff 100%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary:hover {
    background-color: #236b42;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(46, 139, 87, 0.3);
}

.hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* About Section */
.about {
    padding: 4rem 0;
    background-color: var(--white);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.differentiators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.diff-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Services */
.services {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    color: var(--secondary-color);
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.service-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Gallery Section */
.gallery {
    padding: 4rem 0;
    background-color: var(--white);
    overflow: hidden;
    /* Hide overflow for marquee */
}

.gallery-marquee {
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
    position: relative;
    /* Fade edges */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.gallery-track:hover {
    animation-play-state: paused;
    /* Pause on hover */
}

.gallery-item {
    width: 250px;
    height: 350px;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--box-shadow);
    flex-shrink: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move exactly 1/3 of the track width (since we tripled the items) to loop seamlessly */
        transform: translateX(calc(-1 * (250px + 1.5rem) * 5));
    }
}

/* Info & Location */
.info-location {
    padding: 4rem 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-card h4 {
    color: #ffda79;
    /* Soft yellow for contrast */
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.info-card p {
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payments {
    display: flex;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background-color: #222;
    color: #eee;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #444;
    font-size: 0.8rem;
    color: #888;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Desktop Media Queries */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .nav-desktop a {
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .nav-desktop a:not(.btn-header):hover {
        color: var(--primary-color);
    }

    .menu-toggle {
        display: none;
    }

    .hero-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .hero-text {
        align-items: flex-start;
        max-width: 50%;
    }

    .hero-text h2 {
        font-size: 3.5rem;
    }

    .about-content {
        flex-direction: row;
        align-items: center;
    }

    .about-image {
        flex: 1;
    }

    .about-text {
        flex: 1;
    }

    .differentiators {
        flex-direction: row;
        justify-content: space-between;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-contact a {
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}