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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Utility Classes */
.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 3rem 0;
}

.text-royal-blue {
    color: #1d3980;
}

.text-royal-gold {
    color: #c5963b;
}

.bg-royal-blue {
    background-color: #1d3980;
}

.bg-royal-gold {
    background-color: #c5963b;
}

.bg-light-gray {
    background-color: #f5f5f5;
}

.rounded-royal {
    border-radius: 20px;
}

.shadow-royal {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.shadow-royal-lg {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.text-shadow-royal {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hover-lift {
    transition: transform 0.3s ease;
}

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

.hover-scale {
    transition: transform 0.3s ease;
}

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

/* Navigation Bar */
.nav-link {
    color: #1d3980;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #c5963b;
    background-color: rgba(29, 57, 128, 0.1);
    transform: translateY(-2px);
}

.nav-link-mobile {
    color: #1d3980;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(29, 57, 128, 0.1);
    transition: all 0.3s ease;
    display: block;
}

.nav-link-mobile:hover {
    color: #c5963b;
    background-color: rgba(29, 57, 128, 0.05);
    padding-left: 1rem;
}

.nav-link-mobile:last-child {
    border-bottom: none;
}

/* Mobile menu animation */
#mobile-menu {
    transition: all 0.3s ease;
    transform: translateY(-100%);
    opacity: 0;
}

#mobile-menu.show {
    transform: translateY(0);
    opacity: 1;
}

/* Header Section */
.header {
    background: #1d3980;
    padding: 2rem 0;
    position: relative;
    z-index: 100;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.logo-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.business-name {
    font-size: 3rem;
    font-weight: 700;
    color: #1d3980;
    text-transform: uppercase;
    line-height: 0.9;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.business-type {
    font-size: 1.5rem;
    font-weight: 400;
    color: #1d3980;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

.tagline-section {
    text-align: right;
    color: white;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    margin: 0 0 0.5rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.services {
    font-size: 1.2rem;
    font-weight: 400;
    color: white;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.header .contact-card {
    background: #f5f5f5;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border: 3px solid #1d3980;
    transition: all 0.3s ease;
    min-width: 200px;
}

.header .contact-card h4 {
    font-size: 1.2rem;
    color: #1d3980;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.phone-link {
    font-size: 1.5rem;
    color: #1d3980;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #c5963b;
}


/* About Section */
.about {
    background: #c5963b;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-pet {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: rotate(-3deg);
}

.about-text {
    flex: 1;
    color: white;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d3980;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text ul {
    list-style: none;
    margin-top: 1rem;
}

.about-text li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-text li strong {
    font-weight: 700;
}

.about-text li em {
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.faq-section h3 {
    font-size: 1.5rem;
    color: #1d3980;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-align: center;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h4 {
    font-size: 1.1rem;
    color: #1d3980;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.faq-item p {
    font-size: 1rem;
    color: white;
    margin: 0;
    line-height: 1.6;
}

/* Boarding Section */
.boarding {
    background: white;
    padding: 6rem 0;
    position: relative;
}

.boarding-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.boarding-text {
    flex: 1;
}

.boarding-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1d3980;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.boarding-subtitle {
    font-size: 1.8rem;
    color: #c5963b;
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.boarding-text p {
    font-size: 1.2rem;
    color: #1d3980;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.important-notes {
    font-weight: 700;
    margin-top: 2rem;
}

.boarding-image {
    flex: 1;
    position: relative;
}

.boarding-pets {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: rotate(3deg);
}

.contact-cta {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.cta-card {
    background: #c5963b;
    padding: 2rem 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: rotate(-2deg);
}

.cta-card h3 {
    font-size: 1.8rem;
    color: white;
    font-weight: 400;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.cta-card .phone {
    font-size: 1.8rem;
    color: white;
    font-weight: 400;
}

/* Royal Treatment Section */
.royal-treatment {
    background: #1d3980;
    padding: 6rem 0;
    text-align: center;
}

.royal-treatment-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.royal-treatment h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    margin-bottom: 4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-icons {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.service-icon {
    text-align: center;
    color: white;
}

.icon-circle {
    width: 120px;
    height: 120px;
    background: #c5963b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.icon-circle:hover {
    transform: scale(1.05);
}

.service-icon-img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
}

.service-icon h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.service-phone {
    font-size: 1.1rem;
    color: #c5963b;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-phone:hover {
    color: white;
}

.coming-soon {
    font-size: 1rem;
    color: #c5963b;
    font-style: italic;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    background: #c5963b;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.testimonials h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d3980;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 4rem;
}

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

.testimonial-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.testimonial-image {
    margin-bottom: 1.5rem;
}

.customer-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.testimonial-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1d3980;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.testimonial-text p {
    font-size: 1.1rem;
    color: white;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* Find Us Here Section */
.find-us {
    background: #f5f5f5;
    padding: 6rem 0;
}

.find-us-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.find-us h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d3980;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.find-us-image {
    margin-bottom: 3rem;
}

.pets-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #1d3980;
    transition: transform 0.3s ease;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1d3980;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-link {
    font-size: 1.1rem;
    color: #1d3980;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #c5963b;
}

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

.footer-content p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation responsive styles */
    .nav-link {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
    
    .nav-link-mobile {
        font-size: 1rem;
        padding: 0.8rem 0;
    }
    
    /* Mobile navigation layout */
    nav .flex {
        flex-wrap: wrap;
    }
    
    /* Mobile logo sizing */
    nav .w-32 {
        width: 6rem;
        height: 6rem;
    }
    
    nav h1 {
        font-size: 1rem;
    }
    
    nav h2 {
        font-size: 0.75rem;
    }
    
    .header {
        padding: 1.5rem 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .logo {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-right {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        align-items: center;
    }
    
    .tagline-section {
        text-align: center;
    }
    
    .business-name {
        font-size: 2.5rem;
    }
    
    .business-type {
        font-size: 1.2rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .services {
        font-size: 1rem;
    }
    
    .header .contact-card {
        min-width: 180px;
    }
    
    .about-content,
    .boarding-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-text h2,
    .boarding-text h2 {
        font-size: 2rem;
    }
    
    .contact-card,
    .cta-card {
        transform: none;
    }
    
    .service-icons {
        flex-direction: column;
        gap: 2rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .royal-treatment h2,
    .testimonials h2,
    .find-us h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    /* Navigation mobile styles */
    .nav-link {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }
    
    .nav-link-mobile {
        font-size: 0.9rem;
        padding: 0.7rem 0;
    }
    
    /* Extra small mobile navigation */
    nav .w-32 {
        width: 5rem;
        height: 5rem;
    }
    
    nav h1 {
        font-size: 0.875rem;
    }
    
    nav h2 {
        font-size: 0.625rem;
    }
    
    .business-name {
        font-size: 2rem;
    }
    
    .business-type {
        font-size: 1rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .services {
        font-size: 0.9rem;
    }
    
    .contact-card,
    .cta-card {
        padding: 1.5rem;
    }
    
    .contact-card h2,
    .cta-card h3 {
        font-size: 1.5rem;
    }
    
    .phone {
        font-size: 1.5rem;
    }
}

/* Animation and Hover Effects */
.contact-card:hover {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.cta-card:hover {
    transform: scale(1.05) rotate(-2deg);
    transition: transform 0.3s ease;
}

.about-pet:hover,
.boarding-pets:hover {
    transform: scale(1.05) rotate(-3deg);
    transition: transform 0.3s ease;
}

.crown-pet:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for sticky navigation bar height */
}

/* Loading animation for images */
img {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

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

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

/* Testimonial Image Decorative Shape */
.testimonial-image-wrapper {
    position: relative;
    display: inline-block;
}

.testimonial-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
    border-radius: 50% 30% 50% 30% / 30% 50% 30% 50%;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.testimonial-image-wrapper::after {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
    border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%;
    z-index: -2;
    animation: float 8s ease-in-out infinite reverse;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}
