/* ==========================================
   NEW YORK DOG TRAINER - STYLESHEET
   ========================================== */

/* CSS Variables for easy customization */
:root {
    /* Colors - Adjust these to match your brand */
    --primary-color: #2c3e50;
    --primary-dark: #1a252f;
    --accent-color: #e67e22;
    --accent-hover: #d35400;
    --text-dark: #2c3e50;
    --text-medium: #555555;
    --text-light: #777777;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    
    /* Typography */
    --font-heading: 'Crimson Pro', serif;
    --font-body: 'Work Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max: 1200px;
    
    /* Transitions */
    --transition-speed: 0.3s;
}

/* ==========================================
   GLOBAL STYLES
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
}

/* Links */
a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--accent-color);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: all var(--transition-speed);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
    color: white;
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

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

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: -10px;
}

/* ==========================================
   NAVIGATION
   ========================================== */

#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all var(--transition-speed);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo img {
    height: 35px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color var(--transition-speed);
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-cta {
    flex-shrink: 0;
}

/* Hide mobile Book Now button on desktop */
.mobile-only {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-wrapper {
    max-width: var(--container-max);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: center;
}

.hero h1 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* ==========================================
   PHILOSOPHY SECTION
   ========================================== */

.philosophy {
    padding: var(--section-padding);
    background: white;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.philosophy-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pillar {
    padding: 30px;
    background: var(--background-light);
    border-radius: 8px;
    transition: transform var(--transition-speed);
}

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

.pillar h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.pillar p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
}

/* ==========================================
   SPECIALIZATIONS SECTION
   ========================================== */

.specializations {
    padding: var(--section-padding);
    background: var(--background-light);
}

.specializations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.spec-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all var(--transition-speed);
}

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

.spec-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.spec-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.spec-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services {
    padding: var(--section-padding);
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--background-light);
    padding: 40px;
    border-radius: 8px;
    border-top: 4px solid var(--accent-color);
    position: relative;
}

.service-card.featured-service {
    background: linear-gradient(135deg, #fff5ec 0%, var(--background-light) 100%);
    border-top: 4px solid var(--accent-color);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card > p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-medium);
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-price {
    font-weight: 600;
    color: var(--primary-color);
    margin: 20px 0;
}

.service-note {
    background: #fff3e0;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.service-note p {
    margin: 0;
    color: var(--text-medium);
}

/* ==========================================
   TEAM SECTION
   ========================================== */

/* ==========================================
   PACKAGES CTA BANNER
   ========================================== */

.packages-cta {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: white;
}

.packages-cta h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.packages-cta-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.packages-cta .btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.packages-cta .btn-secondary:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

@media (max-width: 768px) {
    .packages-cta {
        padding: 50px 20px;
    }
    
    .packages-cta h2 {
        font-size: 2rem;
    }
    
    .packages-cta-description {
        font-size: 1.1rem;
    }
}

/* ==========================================
   TEAM SECTION
   ========================================== */

.team {
    padding: var(--section-padding);
    background: var(--background-light);
}

.team-category {
    margin-bottom: 80px;
}

.team-category:last-of-type {
    margin-bottom: 60px;
}

.team-category-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.team-category-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-medium);
    font-size: 1.05rem;
}

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

.operations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.walker-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 500px;
    margin: 0 auto;
}

/* When there are multiple walkers, use the regular team-grid layout */
.walker-grid:has(.team-member:nth-child(2)) {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 100%;
}

.team-member {
    background: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.team-member.mentor-dog {
    border-top: 4px solid var(--accent-color);
}

.team-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.credential {
    background: var(--background-light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-medium);
}

.team-bio {
    color: var(--text-medium);
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

.credentials-badges {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 8px;
}

.credentials-badges h4 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.badge {
    text-align: center;
}

.badge-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.badge p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin: 0;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

.testimonials {
    padding: var(--section-padding);
    background: white;
}

.testimonials-swiper {
    padding: 40px 60px;
}

.testimonial-card {
    background: var(--background-light);
    padding: 50px 40px;
    border-radius: 8px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-quote p:before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-color);
    line-height: 0;
    margin-right: 10px;
}

.testimonial-author {
    border-top: 2px solid var(--border-color);
    padding-top: 20px;
}

.author-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.author-dog {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-color);
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
}

.testimonials-external-link {
    text-align: center;
    margin-top: 50px;
}

.testimonials-external-link .btn-secondary {
    display: inline-block;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact {
    padding: var(--section-padding);
    background: var(--background-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.contact-method:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-method strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-method a {
    color: var(--accent-color);
}

.contact-method p {
    color: var(--text-medium);
    margin: 0;
}

/* ==========================================
   FACILITY SECTION
   ========================================== */

.facility {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.facility-content {
    max-width: 700px;
    margin: 0 auto;
}

.facility h2 {
    color: white;
    margin-bottom: 20px;
}

.facility-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 15px;
    opacity: 0.9;
}

.email-signup {
    display: flex;
    max-width: 500px;
    margin: 40px auto 0;
    gap: 10px;
}

.email-signup input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

.email-signup button {
    white-space: nowrap;
}

/* Override Brevo form styles to match site branding */
#sib-container {
    background: transparent !important;
    border: none !important;
}

.facility .sib-form-message-panel {
    margin: 20px auto !important;
    font-family: 'Work Sans', sans-serif !important;
}

.facility .email-signup input {
    font-family: 'Work Sans', sans-serif !important;
}

.facility .email-signup button {
    background-color: var(--accent-color) !important;
    border: none !important;
    font-family: 'Work Sans', sans-serif !important;
    font-weight: 600 !important;
    transition: background-color 0.3s ease !important;
}

.facility .email-signup button:hover {
    background-color: var(--accent-hover) !important;
}

.facility .sib-hide-loader-icon {
    display: none !important;
}

/* ==========================================
   FOOTER
   ========================================== */

/* ==========================================
   THANK YOU PAGES
   ========================================== */

.thank-you-section {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
    color: white;
    font-weight: bold;
}

.thank-you-content h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.95;
}

.thank-you-submessage {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.85;
}

.thank-you-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .thank-you-section {
        padding: 100px 20px 60px;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .thank-you-message {
        font-size: 1.1rem;
    }
    
    .thank-you-submessage {
        font-size: 1rem;
    }
    
    .thank-you-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .thank-you-buttons a {
        width: 100%;
    }
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 20px 30px;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: white;
    opacity: 0.8;
    transition: opacity var(--transition-speed);
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-color);
}

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

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-speed);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(230, 126, 34, 0.4);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* ==========================================
   GEAR PAGE STYLES
   ========================================== */

.gear-hero {
    padding: 140px 20px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.gear-hero h1 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.gear-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.gear-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.gear-section {
    padding: 60px 0;
    background: white;
}

.gear-category {
    margin-bottom: 80px;
}

.gear-category h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-color);
}

.category-description {
    color: var(--text-medium);
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.gear-item {
    background: var(--background-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all var(--transition-speed);
    display: flex;
    flex-direction: column;
}

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

.gear-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gear-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.gear-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.gear-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.gear-description {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.gear-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.gear-content .btn-primary {
    display: block;
    text-align: center;
}

.affiliate-disclosure {
    background: #fff3e0;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    margin-top: 40px;
}

.affiliate-disclosure h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.affiliate-disclosure p {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

.gear-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.gear-cta h2 {
    color: white;
    margin-bottom: 15px;
}

.gear-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.gear-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Active nav link styling for gear page */
.nav-links a.active {
    color: var(--accent-color);
    font-weight: 600;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        gap: 15px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    /* Show mobile Book Now in burger menu */
    .mobile-only {
        display: block;
        margin-top: 10px;
        padding-top: 15px;
        border-top: 1px solid var(--border-color);
    }
    
    .mobile-book-btn {
        display: block;
        background: var(--accent-color);
        color: white !important;
        padding: 12px 20px;
        border-radius: 4px;
        text-align: center;
        font-weight: 600;
        transition: background-color 0.3s ease;
    }
    
    .mobile-book-btn:hover {
        background: var(--accent-hover);
        color: white !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .testimonials-swiper {
        padding: 40px 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .operations-grid {
        grid-template-columns: 1fr;
    }
    
    .walker-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .philosophy-pillars {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .philosophy-pillars,
    .specializations-grid,
    .services-grid,
    .team-grid,
    .walker-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .btn-large {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .email-signup {
        flex-direction: column;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}
