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

:root {
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --soft-black: #2d2d2d;
    --primary-white: #ffffff;
    --off-white: #f5f5f5;
    --light-gray: #e0e0e0;
    --medium-gray: #999999;
    --accent-gold: #d4af37;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
    background-color: var(--primary-white);
    overflow-x: hidden;
    font-weight: 600;
}

/* Welcome Banner */
.welcome-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: var(--primary-white);
    z-index: 1002;
    padding: 1rem 2rem;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
    animation: slideDown 0.5s ease-out;
}

.welcome-banner.hidden {
    animation: slideUp 0.5s ease-out forwards;
}

.welcome-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.welcome-icon {
    font-size: 1.5rem;
}

.welcome-text {
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    font-weight: 700;
}

.welcome-close {
    position: absolute;
    right: 0;
    background: transparent;
    border: 2px solid var(--primary-white);
    color: var(--primary-white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.welcome-close:hover {
    background: var(--primary-white);
    color: #4CAF50;
    transform: rotate(90deg);
}

/* Announcement Banner */
.announcement-banner {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: var(--primary-white);
    z-index: 1001;
    padding: 1rem 2rem;
    box-shadow: 0 4px 20px rgba(255, 68, 68, 0.4);
    animation: slideDown 0.5s ease-out 0.3s backwards;
}

.announcement-banner.hidden {
    top: 0;
    animation: slideUp 0.5s ease-out forwards;
}

body:has(.welcome-banner.hidden) .announcement-banner {
    top: 0;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.announcement-banner.hidden {
    animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.announcement-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.announcement-icon {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.announcement-text {
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    font-weight: 700;
}

.announcement-text strong {
    font-weight: 900;
    letter-spacing: 0.5px;
}

.announcement-close {
    position: absolute;
    right: 0;
    background: transparent;
    border: 2px solid var(--primary-white);
    color: var(--primary-white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.announcement-close:hover {
    background: var(--primary-white);
    color: #ff4444;
    transform: rotate(90deg);
}

/* Adjust navbar position when announcement is visible */
body:has(.announcement-banner:not(.hidden)) .navbar {
    top: 60px;
}

body:has(.announcement-banner:not(.hidden)) .hero {
    margin-top: 60px;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 120px;
    width: 100%;
    background: var(--primary-white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

body:has(.welcome-banner:not(.hidden)) .navbar {
    top: 120px;
}

body:has(.welcome-banner.hidden) .navbar {
    top: 60px;
}

body:has(.welcome-banner.hidden.announcement-banner.hidden) .navbar {
    top: 0 !important;
}

body:has(.welcome-banner:not(.hidden)) .hero {
    margin-top: 180px;
}

body:has(.welcome-banner.hidden) .hero {
    margin-top: 120px;
}

body:has(.welcome-banner.hidden.announcement-banner.hidden) .hero {
    margin-top: 60px !important;
}

.navbar.scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black);
    font-family: 'Fredoka', sans-serif;
}

.logo-text p {
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-black);
    transition: var(--transition);
}

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

.nav-link.btn-book {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    transition: var(--transition);
    font-weight: 800;
}

.nav-link.btn-book::after {
    display: none;
}

.nav-link.btn-book:hover {
    background: var(--soft-black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-black);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--soft-black) 100%);
    overflow: hidden;
    margin-top: 180px;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('Pet Images/600305605_841445715518336_3781766698906963477_n.jpg'),
        url('Pet Images/597066598_841436122185962_2951693371041639276_n.jpg'),
        url('Pet Images/598141327_841445648851676_3134944877408230509_n.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.45;
    animation: kenBurns 25s infinite alternate, heroBackgroundCycle 15s infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes heroBackgroundCycle {
    0% { 
        background-image: url('Pet Images/600305605_841445715518336_3781766698906963477_n.jpg');
        opacity: 0.45;
    }
    30% { 
        background-image: url('Pet Images/600305605_841445715518336_3781766698906963477_n.jpg');
        opacity: 0.45;
    }
    35% {
        opacity: 0.3;
    }
    40% { 
        background-image: url('Pet Images/597066598_841436122185962_2951693371041639276_n.jpg');
        opacity: 0.3;
    }
    45% {
        opacity: 0.45;
    }
    63% { 
        background-image: url('Pet Images/597066598_841436122185962_2951693371041639276_n.jpg');
        opacity: 0.45;
    }
    68% {
        opacity: 0.3;
    }
    73% { 
        background-image: url('Pet Images/598141327_841445648851676_3134944877408230509_n.jpg');
        opacity: 0.3;
    }
    78% {
        opacity: 0.45;
    }
    95% { 
        background-image: url('Pet Images/598141327_841445648851676_3134944877408230509_n.jpg');
        opacity: 0.45;
    }
    100% {
        opacity: 0.3;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.15), rgba(0,0,0,0.45));
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--primary-white);
    max-width: 900px;
    padding: 3rem 2rem;
    animation: fadeInUp 1s ease-out;
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.9;
    animation: fadeIn 1s ease-out 0.3s backwards;
    font-weight: 800;
}

.hero-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    animation: fadeIn 1s ease-out 0.5s backwards;
    letter-spacing: -1px;
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    animation: fadeIn 1s ease-out 0.7s backwards;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease-out 0.9s backwards;
    font-weight: 600;
}

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

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 1.1s backwards;
    position: relative;
    z-index: 4;
    pointer-events: auto;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 5;
    pointer-events: auto;
}

.btn-primary {
    background: var(--primary-white);
    color: var(--primary-black);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: var(--off-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--primary-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
}

.btn-outline:hover {
    background: var(--primary-black);
    color: var(--primary-white);
    transform: translateY(-2px);
}


/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--primary-white);
    position: relative;
    z-index: 2;
}

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

.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--off-white);
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-black);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: grayscale(100%);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
    font-weight: 800;
    font-family: 'Fredoka', sans-serif;
}

.feature-card p {
    color: var(--soft-black);
    line-height: 1.7;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-black);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-top: 1.5rem;
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--off-white);
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    gap: 3rem;
}

.service-card {
    background: var(--primary-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-family: 'Fredoka', sans-serif;
}

.service-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
}

.service-content p {
    color: var(--soft-black);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0 2rem 0;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--soft-black);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-black);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: var(--primary-white);
}

.pricing-note {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-style: italic;
    margin-top: 1rem;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    position: sticky;
    top: 220px;
    z-index: 100;
    background: var(--primary-white);
    padding: 1.5rem 0;
    border-bottom: 2px solid var(--off-white);
}

body:has(.welcome-banner.hidden) .pricing-tabs {
    top: 140px;
}

.tab-btn {
    padding: 1rem 2rem;
    background: var(--off-white);
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-black);
    font-family: 'Fredoka', sans-serif;
}

.tab-btn:hover {
    border-color: var(--primary-black);
}

.tab-btn.active {
    background: var(--primary-black);
    color: var(--primary-white);
}

.pricing-content {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.pricing-content.active {
    display: block;
}

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

.pricing-grid-cats {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.pricing-card {
    background: var(--off-white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 3px solid transparent;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-black);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}



.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-black);
    font-family: 'Fredoka', sans-serif;
}

.price span {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.7;
}

.pricing-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-list li {
    padding: 0.75rem 0;
    color: var(--soft-black);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-card.featured .pricing-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-footnote {
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-top: 1.5rem;
    font-style: italic;
}

.pricing-card.featured .pricing-footnote {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-info {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--off-white);
    border-radius: 15px;
}

.pricing-info p {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: var(--soft-black);
}

/* Extra Services */
.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.extra-card {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.extra-card:hover {
    border-color: var(--primary-black);
    transform: translateY(-5px);
}

.extra-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(100%);
    transition: var(--transition);
}

.extra-card:hover .extra-icon {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.extra-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
    font-weight: 800;
    font-family: 'Fredoka', sans-serif;
}

.extra-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-family: 'Fredoka', sans-serif;
}

.extra-card p:last-child {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: var(--off-white);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-icon {
    font-size: 3rem;
    transform: scale(0);
    transition: var(--transition);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

.gallery-coming-soon {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--off-white);
    border-radius: 15px;
    border: 2px dashed var(--medium-gray);
}

.gallery-coming-soon p {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--soft-black);
    font-family: 'Fredoka', sans-serif;
    margin: 0;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--primary-white);
}

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

.about-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--soft-black);
    margin-bottom: 1.5rem;
}

.about-features {
    margin: 3rem 0;
    display: grid;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-feature-icon {
    background: var(--primary-black);
    color: var(--primary-white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
}

.about-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--primary-black);
    font-weight: 800;
    font-family: 'Fredoka', sans-serif;
}

.about-feature p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.partner-logo {
    max-width: 200px;
    margin-top: 2rem;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: grayscale(100%);
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    filter: grayscale(0%);
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
    font-weight: 800;
    font-family: 'Fredoka', sans-serif;
}

.contact-card p {
    color: var(--soft-black);
    line-height: 1.8;
    margin: 0.5rem 0;
}

.contact-card a {
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--medium-gray);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-closures {
    background: var(--primary-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-closures h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
    font-weight: 800;
    font-family: 'Fredoka', sans-serif;
}

.office-closure-box {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    text-align: center;
}

.office-closure-box h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    font-family: 'Fredoka', sans-serif;
}

.office-closure-box p {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.special-hours-box {
    background: var(--off-white);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border: 2px solid var(--primary-black);
}

.special-hours-box h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    font-family: 'Fredoka', sans-serif;
    color: var(--primary-black);
}

.special-hours-box p {
    font-size: 1rem;
    margin: 0.5rem 0;
    color: var(--soft-black);
    font-weight: 600;
}

.special-hours-box strong {
    font-weight: 800;
    color: var(--primary-black);
}

/* Booking Info Box */
.booking-info-box {
    background: var(--primary-white);
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 2.5rem;
    border: 3px solid var(--primary-black);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.booking-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Fredoka', sans-serif;
    color: var(--primary-black);
    margin: 0;
}

.datcog-section {
    text-align: center;
    margin: 2rem 0;
}

.datcog-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--soft-black);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.datcog-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
}

.datcog-logo {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    transition: var(--transition);
}

.datcog-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.booking-main-message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--soft-black);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
    background: var(--off-white);
    border-radius: 10px;
}

.datcog-info {
    position: relative;
    display: inline-block;
    margin: 1rem 0;
    text-align: center;
    z-index: 1001;
}

.info-button {
    background: transparent;
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    padding: 0;
}

.info-button:hover {
    background: var(--primary-black);
    color: var(--primary-white);
    transform: scale(1.1);
}

.info-tooltip {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-white);
    color: var(--primary-black);
    padding: 1.5rem;
    border-radius: 12px;
    width: 400px;
    max-width: calc(100vw - 40px);
    min-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--primary-black);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
    text-align: left;
}

.info-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-color: var(--primary-black);
}

.info-tooltip::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 12px solid transparent;
    border-top-color: var(--primary-white);
    z-index: -1;
    margin-top: -2px;
}

.info-tooltip.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.info-tooltip p {
    margin: 0.75rem 0;
    line-height: 1.6;
    font-size: 0.95rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    box-sizing: border-box;
}

.info-tooltip p:first-child {
    margin-top: 0;
}

.info-tooltip p:last-child {
    margin-bottom: 0;
}

.info-tooltip strong {
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.booking-button-container {
    text-align: center;
    margin-top: 2rem;
}

.btn-email {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
}

.email-icon {
    font-size: 1.2rem;
}

.pricing-grid-grooming {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.closure-highlight {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ff4444;
}

.closure-highlight strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    font-weight: 800;
    font-family: 'Fredoka', sans-serif;
}

.closure-highlight p {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.closure-highlight small {
    font-size: 0.9rem;
    opacity: 0.9;
    font-style: italic;
}

.contact-closures > p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.closures-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.closure-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--off-white);
    border-radius: 10px;
    transition: var(--transition);
}

.closure-item:hover {
    transform: translateX(5px);
    background: var(--light-gray);
}

.closure-icon {
    font-size: 1.5rem;
}

.cta-box {
    margin-top: 2.5rem;
    padding: 2rem;
    background: var(--primary-black);
    color: var(--primary-white);
    border-radius: 15px;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    font-family: 'Fredoka', sans-serif;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    width: 80px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    font-family: 'Fredoka', sans-serif;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    font-family: 'Fredoka', sans-serif;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0.5rem 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 0.75rem 0;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-white);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0.5rem 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-black);
    color: var(--primary-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-card {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        min-height: 300px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .announcement-banner {
        padding: 1rem;
    }
    
    .announcement-content {
        flex-direction: row;
        gap: 0.5rem;
        padding-right: 40px;
    }
    
    .announcement-text {
        font-size: 0.85rem;
        text-align: left;
    }
    
    .announcement-close {
        right: 10px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: var(--primary-white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 1rem 0;
        display: block;
        width: 100%;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-tabs {
        gap: 0.5rem;
        top: 200px;
        padding: 1rem 0;
    }
    
    body:has(.welcome-banner.hidden) .pricing-tabs {
        top: 120px;
    }
    
    .booking-header {
        flex-direction: column;
        text-align: center;
    }
    
    .info-tooltip {
        width: calc(100vw - 40px);
        max-width: 350px;
        left: 50%;
        padding: 1.25rem;
    }
    
    .info-tooltip p {
        font-size: 0.9rem;
    }
    
    .tab-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .service-content {
        padding: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo {
        height: 50px;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Smooth Transitions */
* {
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Print Styles */
@media print {
    .navbar,
    .hero-buttons,
    .back-to-top,
    .nav-toggle {
        display: none;
    }
}

