* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #fefefe;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e8e8e8;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
}

.nav-brand {
    font-size: 1.6rem;
    font-weight: bold;
    color: #d4a574;
    letter-spacing: -0.5px;
}

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

.nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #d4a574;
}

.nav a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #d4a574;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c3e50;
}

/* Hero Section */
body {
    background: url('sunset-dog-walk-stockcake.jpg') center/cover no-repeat fixed;
}

.hero-section {
    min-height: 85vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 120px 25px 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-logo img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-left: -2in;
}

.hero-text h1 {
    font-size: 3.2rem;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 300;
}

.hero-text p {
    font-size: 1.3rem;
    color: #5a6c7d;
    font-style: italic;
}

/* Services Section */
.services-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8f4e6 0%, #f1ede0 100%);
}

.services-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 300;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.card {
    background: white;
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
}

.card h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 18px;
    font-weight: 600;
}

.card p {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.pricing {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.price-item {
    background: #f8f4e6;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
    border-left: 3px solid #d4a574;
}

/* About Section */
.about-section {
    padding: 90px 0;
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9));
}

.about-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 300;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    text-align: center;
    background: rgba(255,255,255,0.95);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.about-images-left,
.about-images-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-images-left img,
.about-images-right img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.about-text p {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Credentials Section */
.credentials-section {
    padding: 90px 0;
    background: #f8f4e6;
}

.credentials-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 300;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.credential {
    text-align: center;
    padding: 35px 25px;
    border-radius: 15px;
    background: #fafafa;
    border: 2px solid #f0f0f0;
    transition: border-color 0.3s ease;
}

.credential:hover {
    border-color: #d4a574;
}

.cred-icon {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 20px;
}

.credential h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

.credential p {
    color: #7f8c8d;
    font-size: 1rem;
}

/* Gallery Section */
.gallery-section {
    padding: 150px 0;
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9));
    overflow: visible;
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 300;
}

.scroll-carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.scroll-carousel {
    display: flex;
    gap: 20px;
    padding: 120px 0 60px 0;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scroll-carousel::-webkit-scrollbar {
    display: none;
}

.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    color: #d4a574;
    border: 2px solid #d4a574;
    padding: 12px 16px;
    font-size: 1.3rem;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 30;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.arrow-btn:hover {
    background: #d4a574;
    color: white;
    transform: translateY(-50%) scale(1.05);
}

.arrow-btn.prev {
    left: 10px;
}

.arrow-btn.next {
    right: 10px;
}



.scroll-carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.scroll-slide {
    flex: 0 0 400px;
    transition: transform 0.3s ease, z-index 0.3s ease;
    cursor: pointer;
}

.scroll-slide:hover {
    transform: scale(1.5);
    z-index: 25;
}

.scroll-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}



/* Contact Section */
.contact-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8f4e6 0%, #f1ede0 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 300;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-icon {
    font-size: 2rem;
    margin-top: 5px;
}

.contact-method h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-method p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.contact-method a {
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-method a[href*="facebook"] {
    color: #1877f2;
}

.contact-method a[href*="facebook"]:hover {
    color: #166fe5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form input,
.contact-form textarea {
    padding: 18px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d4a574;
}

.contact-form button {
    background: #d4a574;
    color: white;
    padding: 18px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #c19660;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #bdc3c7;
    text-align: center;
    padding: 35px 0;
}

.footer p {
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }

    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 100px 25px 50px;
    }

    .hero-logo img {
        margin-left: 0;
        max-width: 350px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

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

    .services-section h2,
    .credentials-section h2,
    .contact-info h2 {
        font-size: 2.2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-images-left,
    .about-images-right {
        flex-direction: row;
        justify-content: center;
    }

    .about-images-left img,
    .about-images-right img {
        width: 120px;
        height: 120px;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

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

    .scroll-slide {
        flex: 0 0 250px;
    }

    .scroll-slide img {
        height: 200px;
    }

    .arrow-btn {
        padding: 10px 15px;
        font-size: 1.2rem;
    }


}