/* Add extra top margin to the Meet Our Owners heading */
.about-section .owners-heading-margin {
    margin-top: 2.5rem !important;
}
/* Make text a darker color for owner/staff experience */
.owner-card .text-darker,
.features-grid .feature-card .text-darker {
    color: #111 !important;
}
/* Make mission statement text white */
.mission-white {
    color: #fff;
}
/* Add extra top margin to the grooming appointment CTA card */
.grooming-cta-margin {
    margin-top: 2.5rem;
}
/* Make the Full-Service Includes policy card narrower for consistent design */
.narrow-policy-card {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
/* Center align the full-service grooming list */
.centered-grooming-list {
    text-align: center;
    padding-left: 0;
    list-style-position: inside;
    margin-left: auto;
    margin-right: auto;
    display: table;
}
.centered-grooming-list li {
    text-align: left;
    display: list-item;
}
footer .social-icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: 12px !important;
    object-fit: cover;
    overflow: hidden;
    margin-top: 1.5rem !important;
    display: inline-block;
}
footer .social-icon {
    border-radius: 12px !important;
    overflow: hidden;
}
/* Footer alignment styles */
footer .container {
    text-align: center;
}
footer .social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}
footer .social-link {
    display: inline-block;
}
/* Social icon spacing for Facebook and Instagram */
.social-icon {
    margin-top: 1.5rem !important;
    border-radius: 12px !important;
    overflow: hidden;
}
.ready-to-book {
    background: #ffb347;
    color: #222;
}
/* ========================================
   PROJECT: The K9 Inn Website
   FILE: sections.css
   PURPOSE: Page section styles and layouts
   LAST UPDATED: August 21, 2025
   DESCRIPTION: Styles for specific page sections
======================================== */

/* ========================================
   TABLE OF CONTENTS
   1. Hero Sections
   2. Services Section
   3. Gallery Section
   4. Features Section
   5. Testimonials Section
   6. Contact Section
   7. Section Headers
======================================== */

/* ========================================
   1. HERO SECTIONS
   PURPOSE: Landing section with background overlay
   EFFECT: Compelling first impression with clear CTA
======================================== */
.hero, .hero-pointed {
    position: relative;
    padding: var(--section-padding);
    padding-bottom: 50px;
    text-align: center;
    color: white;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Default hero background for homepage */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/k9_Hero (1920 x 600 px) (1).png') no-repeat center center/cover;
}

/* About page hero */
.hero.about-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/Hero_k9.png') no-repeat center center/cover;
}

/* Services page hero */
.hero.services-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/services_hero.png') no-repeat center center/cover;
}

/* Index (Home) page hero */
.hero.index-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/index_hero.png') no-repeat center center/cover;
}

/* Contact page hero (FD version) */
.hero.contact-hero-fd {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/contact_hero_Flip.png') no-repeat center center/cover;
}

/* Service Section Styles */
.service-section {
    margin-bottom: 3rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.service-header {
    background: #83B5BF;
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.service-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(109, 168, 181, 0.9), rgba(131, 181, 191, 0.9));
}

.service-header > * {
    position: relative;
    z-index: 2;
}

.service-header h2 {
    margin: 0;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.service-header p {
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
    font-size: 1.25rem;
}
.service-content {
    padding: 2rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(131, 181, 191, 0.2);
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.pricing-card h3 {
    color: #2c5282;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.pricing-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #5EC8A0;
    margin: 1rem 0;
}

    .hero-subtext {
        font-size: 2rem;
        font-weight: 400;
        margin: 0 auto 2rem auto;
        max-width: 900px;
        color: var(--color-light);
        text-align: center;
        text-shadow: 0 2px 8px rgba(0,0,0,0.5), 0 1px 0 #333;
    }
.pricing-card .price-unit {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.pricing-card .description {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.features-list li {
    padding: 0.3rem 0;
    color: #495057;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.features-list li::before {
    content: '✓';
    color: #5EC8A0;
    font-weight: bold;
    width: 20px;
}

.highlight {
    color: #5EC8A0;
    font-weight: 600;
}

/* Grooming Grid */
.grooming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.grooming-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(131, 181, 191, 0.2);
}

.grooming-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.grooming-card h4 {
    color: #2c5282;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.grooming-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5EC8A0;
}

/* Add-ons Section */
.add-ons {
    margin: 2rem 0;
}

.add-ons h3 {
    color: #2c5282;
    margin-bottom: 1.5rem;
    text-align: center;
}

.add-on-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
    border-left: 4px solid #5EC8A0;
}

.add-on-item span:last-child {
    color: #5EC8A0;
    font-weight: 600;
}

/* Policies Section */
.policies-section {
    margin: 2rem 0;
}

.policies-section h3 {
    color: #2c5282;
    margin-bottom: 1.5rem;
    text-align: center;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.policy-card {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(131, 181, 191, 0.2);
}

.policy-card h4 {
    color: #2c5282;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.policy-card ul {
    list-style: none;
    padding: 0;
}

.policy-card ul li {
    padding: 0.3rem 0;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-card ul li::before {
    content: '•';
    color: #83B5BF;
    font-weight: bold;
    width: 10px;
}

/* Contact CTA Section */


.contact-cta h3 {
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.contact-cta {
    background: linear-gradient(135deg, #83B5BF, #6DA8B5);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 3rem;
    border-radius: 15px;
}
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
    opacity: 0.95;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    margin: 0;
    opacity: 0.9;
}

.contact-item a {
    color: white;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .grooming-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .policies-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .add-on-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .grooming-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card,
    .grooming-card,
    .policy-card {
        padding: 1rem;
    }
    
    .contact-cta {
        padding: 2rem 1rem;
    }
    
    .contact-cta h3 {
        font-size: 1.8rem;
    }
}

/* Contact Hero Background */
.hero.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/contact_hero.png') no-repeat center center/cover;
}

/* Services page hero */
.hero.services-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/services_hero.png') no-repeat center center/cover;
}

.hero::before, .hero-pointed::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero > .container, .hero-pointed > .container {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4.2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease-out;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.3s both;
    padding-bottom: 20px;
}

/* ========================================
   2. SERVICES SECTION
   PURPOSE: Showcase main service offerings
   EFFECT: Clear presentation of core services
======================================== */
.services {
    padding: var(--section-padding);
    background: rgb(232, 240, 254);
    position: relative;
}

.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(183, 206, 246, 0.3) 0%, rgba(183, 206, 246, 0.3) 100%);
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* ========================================
   3. GALLERY SECTION
   PURPOSE: Visual showcase of facility and pets
   EFFECT: Engaging photo gallery with interactions
======================================== */
.gallery {
    padding: var(--section-padding);
    background: rgba(248, 249, 250, 0.623);
    position: relative;
}

.gallery::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(233, 236, 239, 0.3) 100%);
    z-index: 1;
}

.gallery-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* ========================================
   4. FEATURES SECTION
   PURPOSE: Highlight unique selling propositions
   EFFECT: Build trust and credibility
======================================== */
.features {
    padding: var(--section-padding);
    background: rgba(245, 247, 250, 0.85);
    position: relative;
}

.features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(195, 207, 226) 0%, rgb(195, 207, 226) 100%);
    z-index: 1;
}

.features .container {
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

/* ========================================
   5. TESTIMONIALS SECTION
   PURPOSE: Social proof and customer reviews
   EFFECT: Build trust through customer stories
======================================== */
.testimonials {
    padding: var(--section-padding);
    background: rgb(248, 249, 250);
    position: relative;
}

.testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(126, 152, 160, 0.3) 0%, rgba(183, 206, 246, 0.2) 100%);
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

/* ========================================
   6. CONTACT SECTION
   PURPOSE: Contact information and call-to-action
   EFFECT: Clear pathways for customer contact
======================================== */
.contact {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #7E98A0 0%, #B7CEF6 100%);
    color: #1a1a1a;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    text-align: center;
}

/* ========================================
   7. SECTION HEADERS
   PURPOSE: Consistent section title styling
   EFFECT: Clear visual hierarchy
======================================== */
.section-header {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--text-dark-blue);
    background: rgba(255, 255, 255, 0.644);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    -webkit-backdrop-filter: blur(12px); /* Add this line */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: fit-content;
    margin: 0 auto 3rem auto;
}

/* Apply section header styles to existing h2 elements */
.services h2,
.gallery h2,
.features h2,
.testimonials h2,
.contact h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--text-dark-blue);
    background: rgba(255, 255, 255, 0.644);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    -webkit-backdrop-filter: blur(12px); /* Add this line */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: 0 auto 3rem auto;
    max-width: fit-content;
}

.contact h2 {
    background: rgba(255, 255, 255, 0.95);
    max-width: 400px;
    color: #1a1a1a;
    font-weight: 700;
}

.features h2 {
    max-width: 650px;
}

/* Mobile responsiveness for sections */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .gallery-container {
        padding: 0 10px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .section-header,
    .services h2,
    .gallery h2,
    .features h2,
    .testimonials h2,
    .contact h2 {
        font-size: 2.2rem;
        padding: 0.8rem 1.2rem;
    }
}

/* ========================================
   8. ABOUT PAGE SPECIFIC STYLES
   PURPOSE: Bento box layout and about page sections
   EFFECT: Modern card-based layout for about content
======================================== */

/* Main content wrapper for about page */
.main-content {
    padding: var(--section-padding);
    background: rgba(248, 249, 250, 0.623);
    position: relative;
}

.main-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(233, 236, 239, 0.3) 100%);
    z-index: 1;
}

.main-content .container {
    position: relative;
    z-index: 2;
}

/* About section base styles */
.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--text-dark-blue);
    background: rgba(255, 255, 255, 0.644);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    -webkit-backdrop-filter: blur(12px); /* Add this line */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: fit-content;
    margin: 0 auto 3rem auto;
}

/* About intro section - hero style box */
.about-intro {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    padding: 3rem;
    border-radius: 25px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-heavy);
    text-align: center;
    border: 1px solid rgba(183, 206, 246, 0.3);
}

.about-intro h3 {
    font-size: 2.2rem;
    color: var(--text-dark-blue);
    margin-bottom: 1.5rem;
    font-style: normal;
}

.about-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--neutral-grey);
}

/* Owners section - bento box grid */
.owners-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.owner-card {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    transition: all 0.3s ease;
    padding: 2.5rem;
}

.owner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.owner-card h3 {
    color: var(--text-dark-blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.owner-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--neutral-grey);
    margin-bottom: 1.5rem;
}

/* Mission section - special highlighted box */
.mission-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 3rem;
    border-radius: 25px;
    margin: 3rem 0;
    text-align: center;
}

.mission-section h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.mission-section p {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Features grid - bento box style */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.feature-card {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    transition: all 0.3s ease;
    padding: 2.2rem;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    margin-bottom: 1.2rem;
}

.feature-card h4 {
    color: var(--neutral-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-icon img, .feature-icon svg {
    width: 56px;
    height: 56px;
    display: inline-block;
    opacity: 0.95;
}

.feature-card p {
    color: var(--neutral-grey);
    line-height: 1.6;
}

/* Motto section - special highlighted box */
.motto-section {
    background: linear-gradient(145deg, #ffeaa7, #fab1a0);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 3rem 0;
}

.motto-section h3 {
    font-size: 2.2rem;
    color: #d63031;
    margin-bottom: 1rem;
}

.motto-section p {
    font-size: 1.4rem;
    color: #2c3e50;
    font-weight: 600;
    font-style: italic;
}

/* Contact CTA section */
 .contact-cta {
     background: linear-gradient(135deg, #83B5BF, #6DA8B5);
     color: white;
     padding: 3rem 2rem;
     text-align: center;
     border-radius: var(--border-radius);
     margin: 3rem 0;
}

.contact-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

/* ========================================
   CONTACT PAGE SPECIFIC STYLES
======================================== */
.contact-section {
    padding: var(--section-padding);
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(2px); /* Add this line */
    backdrop-filter: blur(2px);
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark-blue);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-light);
    text-align: center;
    border: 2px solid rgba(233, 234, 236, 0.6);
    transition: all 0.3s ease;
    position: relative;
    -webkit-backdrop-filter: blur(5px); /* Add this line */
    backdrop-filter: blur(5px);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-blue);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--neutral-grey));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.contact-item h3 {
    font-size: 1.5rem;
    color: var(--text-dark-blue);
    margin-bottom: 1rem;
}

.contact-item p {
    margin-bottom: 0.5rem;
    color: var(--text-light-grey);
    line-height: 1.6;
}

.contact-item small {
    color: var(--neutral-grey);
    font-size: 0.9rem;
}

.contact-item a {
    color: #1a2633;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--text-dark-blue);
    text-decoration: underline;
}

.contact-item strong {
    color: var(--neutral-dark);
}

.hours-list p {
    margin-bottom: 0.8rem;
}

.booking-cta-section {
    padding: var(--section-padding);
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(3px); /* Add this line */
    backdrop-filter: blur(3px);
}

.booking-cta-bento {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid rgba(233, 234, 236, 0.6);
    transition: all 0.3s ease;
}

.booking-cta-bento:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark-blue);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light-grey);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 160px;
    border: none;
    outline: none;
    box-shadow: none;
}

.cta-button:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
    box-shadow: none;
}

.cta-button.primary {
    background: var(--accent-blue);
    color: white;
}

.cta-button.primary:hover {
    background: var(--neutral-grey);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(131, 181, 191, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
}

.cta-button.secondary:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(131, 181, 191, 0.3);
}

.map-section {
    padding: var(--section-padding);
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(3px); /* Add this line */
    backdrop-filter: blur(3px);
}

.map-bento {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-light);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid rgba(233, 234, 236, 0.6);
    transition: all 0.3s ease;
}

.map-bento:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.map-bento h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark-blue);
}

.map-container {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: none;
}

.directions-info {
    background: var(--bg-light-grey);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.directions-info h3 {
    color: var(--text-dark-blue);
    margin-bottom: 1rem;
}

.directions-info p {
    color: var(--text-light-grey);
    line-height: 1.6;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Contact page mobile responsiveness */
@media (max-width: 768px) {
    .contact-section,
    .booking-cta-section,
    .map-section {
        padding: var(--section-padding-sm);
    }
    
    .booking-cta-bento,
    .map-bento {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button {
        width: 200px;
    }
    
    .contact-section h2,
    .map-bento h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .directions-info,
    .map-container {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Tablet view - 2 columns */
@media (max-width: 1024px) and (min-width: 769px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-item:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* About page mobile responsiveness */
@media (max-width: 768px) {
    .owners-section {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-section h2 {
        font-size: 2.2rem;
    }
}

/* Increase contrast for hero/bento icon and text in the blue section */
.services-hero, .services-hero * {
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.services-hero .icon, .services-hero svg {
    fill: #fff !important;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18));
}

/* --- Rewards/Recognition Card Alignment Fix --- */
.rewards-row, .recognition-row {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    justify-content: center;
}

.reward-card, .recognition-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 3rem 2rem 2.5rem 2rem;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    min-width: 340px;
    max-width: 480px;
    flex: 1 1 0;
}

.reward-card .reward-image {
    margin: 2.5rem 0 2.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recognition-card .recognition-image {
    margin: 2.5rem 0 2.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
}

.reward-card .reward-copy,
.recognition-card .recognition-copy {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reward-card .reward-btn,
.recognition-card .recognition-btn {
    margin-top: 1.5rem;
    align-self: center;
}

@media (max-width: 900px) {
  .rewards-row, .recognition-row {
    flex-direction: column;
    align-items: stretch;
  }
  .reward-card, .recognition-card {
    max-width: 100%;
    min-width: 0;
  }
}
