@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rubik', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #FFFFFF;
    color: #181817;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background-color: #124C5F;
    color: #FFFFFF;
}

.btn-secondary {
    background-color: #124C5F;
    color: #FFFFFF;
}

.btn-tertiary {
    background-color: #C7E7E1;
    color: #124C5F;
}

.btn-outline {
    background-color: transparent;
    color: #124C5F;
    border: 2px solid #124C5F;
    font-size: 22px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
}

.section-heading h2 {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 28px;
    color: #000000;
    margin-bottom: 5px;
    text-align: center;
}

.heading-underline {
    display: block;
    margin: 0 auto 40px auto;
}

.hero-section {
    background: linear-gradient(to bottom, #F6FFFD, rgba(251, 251, 251, 0));
    padding: 20px 5%;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero-bg-shape-1 {
    position: absolute;
    width: 120vw;
    max-width: 1800px;
    height: 75vh;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

nav {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 20px 5%;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    color: #3F836A;
}

.logo-icon {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 32px;
    color: #3F836A;
}

.nav-links {
    display: flex;
    gap: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    margin: 0;
}

.nav-links a {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #000000;
}

.nav-appointment-btn {
    margin-left: auto;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-grow: 1;
    gap: 20px;
    padding-top: 50px;
    position: relative;
    z-index: 5;
}

.hero-text h1 {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 1.15;
    letter-spacing: 5%;
    color: #000000;
    margin-bottom: 20px;
}

.hero-text p {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 19px;
    line-height: 1.37;
    letter-spacing: 5%;
    color: #181817;
    margin-bottom: 30px;
    max-width: 450px;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-dog-image {
    max-width: 400px;
    border-radius: 24px;
    position: relative;
    z-index: 2;
}

.blob-1 {
    width: 180px;
    height: auto;
    position: absolute;
    bottom: 10%;
    left: 5%;
    z-index: 1;
}

.blob-2-alt {
    width: 220px;
    height: auto;
    position: absolute;
    top: 10%;
    right: -15%;
    z-index: 1;
    transform: scaleX(-1) rotate(25deg);
}

.services-section {
    padding: 60px 5%;
    text-align: center;
}

.service-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: linear-gradient(to bottom, #F9FFFE, rgba(255, 255, 255, 0));
    border: 1px solid #98F2E1;
    border-radius: 25px;
    box-shadow: 0px 4px 74px 0px rgba(199, 231, 225, 0.27);
    padding: 30px 20px;
    width: 200px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card.alt-style {
    background: linear-gradient(to bottom, #FFFAE0, rgba(255, 255, 255, 0));
    border: 1px solid #FFEE94;
}

.service-icon {
    height: 60px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #000000;
    margin: 0;
}

.about-section {
    padding: 60px 5%;
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: #FFFFFF;
}

.about-image-container {
    flex-basis: 50%;
    position: relative;
    text-align: center;
    min-height: 450px;
}

.about-bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 480px;
    height: auto;
    z-index: 1;
}

.about-dog-image {
    max-width: 80%;
    width: 350px;
    position: relative;
    z-index: 2;
}

.about-text-container {
    flex-basis: 50%;
}

.about-text-container h2 {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 34px;
    color: #000000;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-text-container p {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 19px;
    color: #4E4C46;
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin-bottom: 30px;
}

.about-extras {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.video-link {
    display: flex;
    align-items: center;
    background-color: #124C5F;
    padding: 10px 15px;
    border-radius: 5px;
    color: #FFFFFF;
    cursor: pointer;
}

.video-play-bg {
    display: none;
}

.video-play-icon {
    height: 20px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
}

.video-link span {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.extra-icon {
    height: 40px;
}

.products-section {
    padding: 60px 5%;
    text-align: center;
    background-color: #FFFFFF;
}

.discount-text {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #000000;
    margin-top: 10px;
    margin-bottom: 40px;
}

.product-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.product-card {
    background-color: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding-bottom: 20px;
    overflow: hidden;
}

.product-image-bg {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.product-bg-1 {
    background-image: url('../images/product_bg_shape_1.svg');
}

.product-bg-2 {
    background-image: url('../images/product_bg_shape_2.svg');
}

.product-bg-3 {
    background-image: url('../images/product_bg_shape_3.svg');
}

.product-image {
    max-height: 90%;
    max-width: 90%;
    object-fit: contain;
}

.product-card h4 {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    line-height: 1.4;
    padding: 0 15px;
    margin-bottom: 20px;
    min-height: 75px;
}

.product-card .btn-outline {
    margin: 0 15px;
}

.btn-view-more {
    margin-top: 50px;
}

.detail-section {
    background: linear-gradient(to bottom, #F6FFFD, rgba(251, 251, 251, 0));
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.detail-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
}

.detail-text {
    flex-basis: 50%;
    max-width: 500px;
}

.detail-text h2 {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 34px;
    color: #000000;
    letter-spacing: 0.05em;
    line-height: 1.3;
    margin-bottom: 20px;
}

.detail-text p {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 19px;
    color: #4E4C46;
    letter-spacing: 0.05em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.detail-image-container {
    flex-basis: 50%;
    position: relative;
    text-align: right;
}

.detail-dog-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.detail-paw-decoration {
    position: absolute;
    bottom: 20px;
    left: -30px;
    width: 80px;
    opacity: 0.7;
}

.testimonial-section {
    background: linear-gradient(to bottom, #FFFFF6, rgba(251, 251, 251, 0));
    padding: 60px 5%;
    text-align: center;
}

.testimonial-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 50px;
    align-items: stretch;
}

.testimonial-card {
    width: 320px;
    border-radius: 33px;
    overflow: hidden;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.testimonial-image-bg {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 33px 33px 0 0;
}

.testimonial-image-bg img {
    max-height: 160px;
    width: auto;
    border-radius: 50%;
    border: 4px solid #FFFFFF;
}

.testimonial-bg-1 {
    background-color: #FFF1A6;
}
.testimonial-bg-2 {
    background-color: #EBA8BF;
}
.testimonial-bg-3 {
    background-color: #DDC7ED;
}

.testimonial-content {
    background-color: #124C5F;
    padding: 25px;
    color: #FFFFFF;
}

.testimonial-content h4 {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #DDCA69;
    margin-top: 0;
    margin-bottom: 10px;
}

.testimonial-content p {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.star-rating-icon {
    height: 18px;
}

.rating span {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 14px;
}

footer {
    background-color: #F6FAF9;
    padding: 40px 5% 20px;
    color: #414141;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column {
    min-width: auto;
    text-align: center;
}

.footer-column.links-column ul {
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-column.links-column ul li {
    margin-bottom: 0;
}

.footer-column h4 {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #000000;
    margin-bottom: 20px;
}

.footer-column.links-column h4 {
    font-size: 22px;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #000000;
}

.contact-column p {
    font-family: 'Rubik', sans-serif;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-column .contact-icon {
    height: 18px;
}

.contact-column p:nth-of-type(1), 
.contact-column p:nth-of-type(2) {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #124C5F;
}

.contact-column p:nth-of-type(3) {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #757777;
}

.social-column h4 {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon-svg {
    width: 24px;
    height: 24px;
    fill: #124C5F;
}

.social-icons a:hover .social-icon-svg {
    fill: #0e3a4a;
}

.subscribe-column input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #D2CFCF;
    border-radius: 5px;
    margin-bottom: 15px;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 16px;
    box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.05);
}

.subscribe-column .btn-primary img {
    filter: brightness(0) invert(1);
}

.footer-bottom {
    border-top: 1px solid #C7C7C7;
    padding-top: 20px;
    text-align: center;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 30px;
    }

    .hero-text {
        max-width: 100%;
        order: 2;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .hero-text p {
        font-size: 17px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image-container {
        order: 1;
        margin-bottom: 30px;
    }

    .hero-dog-image {
        max-width: 320px;
    }

    .blob-1, .blob-2-alt {
        width: 150px;
    }

    .about-section {
        flex-direction: column;
        gap: 30px;
    }

    .about-image-container,
    .about-text-container {
        flex-basis: 100%;
        max-width: 100%;
        text-align: center;
    }

    .about-text-container p {
        margin-left: auto;
        margin-right: auto;
        max-width: 500px;
    }

    .about-extras {
        justify-content: center;
    }

    .detail-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .detail-text,
    .detail-image-container {
        flex-basis: 100%;
        max-width: 100%;
        text-align: center;
    }

    .detail-text p {
        margin-left: auto;
        margin-right: auto;
        max-width: 500px;
    }

    .detail-paw-decoration {
        left: 10%;
        bottom: 5%;
        width: 60px;
    }

}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .nav-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 200px;
        margin: 0 auto;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
        max-width: 90%;
    }
    
    .section-heading h2 {
        font-size: 24px;
    }

    .discount-text {
        font-size: 32px;
    }

    .service-card,
    .product-card,
    .testimonial-card {
        width: 90%;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    .product-card h4 {
        font-size: 17px;
        min-height: 60px;
    }

    .about-text-container h2,
    .detail-text h2 {
        font-size: 28px;
    }

    .about-text-container p,
    .detail-text p {
        font-size: 16px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        width: 100%;
        max-width: 350px;
    }

    .contact-column p {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .subscribe-column .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .hero-text h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 15px;
    }

    .hero-dog-image {
        max-width: 260px;
    }

    .blob-1, .blob-2-alt {
        width: 120px;
    }

    .section-heading h2 {
        font-size: 22px;
    }

    .discount-text {
        font-size: 26px;
    }

    .service-card,
    .product-card,
    .testimonial-card {
        width: 100%;
        padding: 20px 15px;
    }

    .service-icon {
        height: 50px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .product-image-bg {
        height: 200px;
    }

    .product-card h4 {
        font-size: 16px;
        min-height: auto;
        margin-bottom: 15px;
    }

    .btn {
        padding: 8px 15px;
        font-size: 15px;
    }

    .btn-outline {
        font-size: 18px;
    }

    .about-text-container h2,
    .detail-text h2 {
        font-size: 24px;
    }

    .about-text-container p,
    .detail-text p {
        font-size: 15px;
    }

    .testimonial-image-bg {
        height: 150px;
    }
    .testimonial-image-bg img {
        max-height: 120px;
    }
    .testimonial-content h4 {
        font-size: 20px;
    }
    .testimonial-content p {
        font-size: 13px;
        min-height: auto;
    }
    .rating span, .star-rating-icon {
        font-size: 13px;
        height: 16px;
    }

    .footer-column h4 {
        font-size: 16px;
    }
    .footer-column ul li a,
    .contact-column p,
    .social-column h4,
    .footer-bottom p {
        font-size: 14px;
    }
    .contact-column p:nth-of-type(1),
    .contact-column p:nth-of-type(2) {
        font-size: 16px;
    }
    .subscribe-column input[type="email"] {
        font-size: 15px;
    }
}

.contact-form-section {
    padding: 60px 5%;
    background-color: #F9F9F9;
}

.contact-form-section .section-heading h2 {
    margin-bottom: 40px;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-map iframe {
    display: block;
}

.contact-details {
    flex: 1;
    min-width: 300px;
    font-size: 16px;
    line-height: 1.7;
}

.contact-details h3 {
    font-size: 24px;
    font-weight: 700;
    color: #124C5F;
    margin-top: 0;
    margin-bottom: 20px;
}

.contact-details p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-details p strong {
    font-weight: 700;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.contact-details p.working-hours-block {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
}

.contact-details p.working-hours-block .hours-details {
    display: block;
}

.contact-detail-icon {
    height: 20px;
    margin-top: 3px;
    fill: #124C5F;
    color: #124C5F;
}

.contact-details strong {
    font-weight: 700;
    color: #333;
    display: inline;
    margin-bottom: 0;
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #124C5F;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    line-height: 50px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    text-decoration: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scroll-top-btn.show {
    display: block;
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: #0e3a4a;
}

.logo-image-main {
    height: 90px;
    width: auto;
    max-width: 100%;
}

.footer-logo-image {
    height: 90px;
    width: auto;
    max-width: 200px;
    margin-bottom: 15px;
}

.footer-column.links-column ul {
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-column.links-column ul li {
    margin-bottom: 0;
} 