/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 165, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 80px;
    width: auto;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #8B4513;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

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

.nav-link:hover {
    color: #D2691E;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #D2691E;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FFF8DC 0%, #F5E6D3 100%);
    padding: 138px 0 20px 0;
    position: relative;
}

.hero::before {
    content: "🐾";
    position: absolute;
    top: 20%;
    left: 10%;
    font-size: 4rem;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: "🐾 🐾 🐾";
    position: absolute;
    bottom: 20%;
    right: 15%;
    font-size: 3rem;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    letter-spacing: 2rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #5D4037;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Why Section */
.why-section {
    padding: 6rem 0;
    background: white;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 1.5rem;
}

.why-text p {
    font-size: 1.1rem;
    color: #5D4037;
    line-height: 1.8;
}

.why-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Portfolio Section */
.portfolio {
    padding: 3rem 0 6rem 0;
    background: #FFFBF5;
}

.portfolio h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    color: #8B4513;
    text-align: center;
    margin-bottom: 1rem;
}

.portfolio-subtitle {
    font-size: 1.2rem;
    color: #5D4037;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services {
    padding: 3rem 0 6rem 0;
    background: white;
}

.services h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    color: #8B4513;
    text-align: center;
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #5D4037;
    text-align: center;
    margin-bottom: 3rem;
}

.session-info {
    margin-bottom: 4rem;
}

.info-card {
    background: #FFF8DC;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.info-card h3 {
    font-family: 'Poppins', sans-serif;
    color: #8B4513;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
    text-align: left;
}

.info-card li {
    color: #5D4037;
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D2691E;
    font-weight: bold;
}

.packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package {
    background: white;
    border: 2px solid #F5E6D3;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.package.featured {
    border-color: #D2691E;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(210, 105, 30, 0.2);
}

.package:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.package.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.package-header {
    margin-bottom: 2rem;
}

.package-header i {
    font-size: 3rem;
    color: #D2691E;
    margin-bottom: 1rem;
}

.package h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.price {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D2691E;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

.popular {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #D2691E;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-features {
    list-style: none;
    text-align: left;
}

.package-features li {
    margin: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #5D4037;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D2691E;
    font-weight: bold;
}

/* Preparation Section */
.preparation {
    padding: 6rem 0;
    background: #FFFBF5;
}

.prep-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.prep-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 2rem;
}

.recommendations {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.rec-item:hover {
    transform: translateX(10px);
}

.rec-item i {
    font-size: 1.5rem;
    color: #D2691E;
    min-width: 30px;
}

.rec-item span {
    color: #5D4037;
    font-weight: 500;
}

.prep-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Policies Section */
.policies {
    padding: 6rem 0;
    background: white;
}

.policies h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #8B4513;
    text-align: center;
    margin-bottom: 3rem;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.policy-item {
    background: #FFF8DC;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.policy-item:hover {
    transform: translateY(-5px);
}

.policy-item i {
    font-size: 2.5rem;
    color: #D2691E;
    margin-bottom: 1rem;
}

.policy-item h3 {
    font-family: 'Poppins', sans-serif;
    color: #8B4513;
    margin-bottom: 1rem;
}

.policy-item p {
    color: #5D4037;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #FFFBF5;
}

.testimonials h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.3rem;
    color: #8B4513;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.stars {
    margin-bottom: 1rem;
}

.stars i {
    color: #FFD700;
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial p {
    font-size: 1.1rem;
    color: #5D4037;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.author {
    color: #8B4513;
    font-weight: 600;
}

.testimonials-cta {
    text-align: center;
    margin-top: 3rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #5D4037;
    line-height: 1.8;
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0 3rem 0;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    text-align: center;
    color: white;
}

.final-cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.contact-item i {
    font-size: 1.5rem;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.final-logo img {
    height: 60px;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        padding: 1rem;
        display: block;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .why-content,
    .prep-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .package.featured {
        transform: none;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .nav-container {
        padding: 1rem;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

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

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus styles for accessibility */
.cta-button:focus,
.nav-link:focus,
.contact-item a:focus {
    outline: 2px solid #D2691E;
    outline-offset: 2px;
}

/* Gallery Overlay */
.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.photo-count {
    font-size: 0.9rem;
    font-weight: 500;
}

.session-name {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 1% auto;
    width: 95%;
    max-width: 1200px;
    height: 95%;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 15px 20px;
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
}

.close {
    color: #999;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #D2691E;
}

.modal-body {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 0;
}

.gallery-slider {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.slider-container {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.3s ease;
    align-items: center;
}

.slider-track img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 8px;
}

.slider-btn {
    background: #D2691E;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #B8621A;
    transform: scale(1.1);
}

.slider-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: scale(1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 8px 0;
    flex-shrink: 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #D2691E;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .modal-header {
        padding: 15px;
    }
    
    .modal-body {
        padding: 15px;
    }
}

/* Paw Animation */
.paw-click-animation {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    font-size: 24px;
    color: #D2691E;
    animation: pawBounce 0.8s ease-out forwards;
    user-select: none;
}

@keyframes pawBounce {
    0% {
        opacity: 1;
        transform: scale(0.5) rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2) rotate(15deg);
    }
    100% {
        opacity: 0;
        transform: scale(0.8) rotate(30deg) translateY(-30px);
    }
}

.paw-trail {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    font-size: 16px;
    color: #D2691E;
    opacity: 0.6;
    animation: pawTrail 1s ease-out forwards;
    user-select: none;
}

@keyframes pawTrail {
    0% {
        opacity: 0.6;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.4;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.6) translateY(-20px);
    }
}

/* Print styles */
@media print {
    .header,
    .cta-button,
    .final-cta,
    .footer,
    .modal,
    .paw-click-animation,
    .paw-trail {
        display: none;
    }
    
    body {
        color: black;
        background: white;
    }
}

/* Appointment Section */
.appointment {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 0 80px 0;
    position: relative;
}

.appointment h2 {
    text-align: center;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    color: #8B4513;
}

.appointment-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.appointment-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.calendar-and-time-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.calendar-section {
    background: #fff;
}

.time-selection {
    background: #fff;
}

.form-section {
    margin-top: 10px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #8B4513;
    font-size: 1.5rem;
}

.calendar-nav {
    background: #D2691E;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(210, 105, 30, 0.3);
}

.calendar-nav:hover {
    background: #B8541C;
    transform: scale(1.1);
}

.calendar-grid {
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #8B4513;
}

.weekday {
    padding: 12px 8px;
    text-align: center;
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: white;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.calendar-day:hover:not(.disabled):not(.empty) {
    background: #fff5f5;
    color: #D2691E;
    transform: scale(1.05);
}

.calendar-day.selected {
    background: #D2691E;
    color: white;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(210, 105, 30, 0.4);
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
    background: #f8f8f8;
}

.calendar-day.empty {
    cursor: default;
    background: #fafafa;
}

/* Time Selection */
.time-selection {
    background: #fff;
    padding-left: 20px;
}

.time-selection h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #8B4513;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.selected-date {
    background: linear-gradient(135deg, #D2691E, #8B4513);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-weight: 500;
    text-align: center;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.time-slot {
    padding: 15px 10px;
    text-align: center;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #666;
}

.time-slot:hover:not(.disabled) {
    background: #fff5f5;
    border-color: #D2691E;
    color: #D2691E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.2);
}

.time-slot.selected {
    background: #D2691E;
    border-color: #D2691E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.4);
}

.time-slot.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Appointment Form */
.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 0;
}

.button-row {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #D2691E;
    box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.1);
}

.whatsapp-btn {
    width: 100%;
    background: #25D366;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.whatsapp-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.whatsapp-btn.enabled:hover {
    background: #20B358;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn i {
    font-size: 1.3rem;
}

/* Responsive Design for Calendar */
@media (max-width: 768px) {
    .appointment {
        padding: 60px 0;
    }
    
    .appointment-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .appointment h2 {
        font-size: 2rem;
    }
    
    .calendar-header h3 {
        font-size: 1.3rem;
    }
    
    .calendar-nav {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .weekday {
        padding: 10px 4px;
        font-size: 0.8rem;
    }
    
    .calendar-day {
        font-size: 0.9rem;
    }
    
    .time-slots {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .time-selection {
        padding-left: 0;
    }
    
    .time-selection h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .appointment h2 {
        font-size: 1.8rem;
    }
    
    .appointment-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .calendar-header h3 {
        font-size: 1.2rem;
    }
    
    .weekday {
        padding: 8px 2px;
        font-size: 0.7rem;
    }
    
    .selected-date {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}

/* Paw Print Cursor Trail */
.paw-print {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    width: 20px;
    height: 20px;
    opacity: 0.8;
    transform: rotate(0deg);
    transition: opacity 0.5s ease-out;
}

.paw-print::before {
    content: '🐾';
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FF9500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.paw-print.fade-out {
    opacity: 0;
    transform: scale(0.5) rotate(15deg);
}