:root {
    --primary-color: #f97316;
    --primary-dark: #ea580c;
    --text-color: #1d1d1f;
    --light-text: #6e6e73;
    --background: #ffffff;
    --light-background: #fff7ed;
    --border-color: #fed7aa;
    --success-color: #059669;
    --error-color: #dc2626;
    --apple-blue: #f97316;
    --apple-gray: #fff7ed;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, sans-serif;
    line-height: 1.47059;
    color: var(--text-color);
    background: #ffffff;
    position: relative;
    overflow-x: hidden;
    font-size: 17px;
    letter-spacing: -0.022em;
}

/* Ensure content is above background */
section {
    position: relative;
    z-index: 1;
}

/* Two-Tone Alternating Background */
section:nth-of-type(odd) {
    background: #ffffff;
}

section:nth-of-type(even) {
    background: #f5f5f7;
}

/* Layout and Header */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0rem;
}

/* Full-width container for Apple-style sections */
.container-full {
    width: 100%;
    padding: 0;
}

.section-large {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0rem;
}

header,
.site-header {
    background: rgba(251, 251, 253, 0.8) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky !important;
    top: 0;
    z-index: 9999 !important;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    box-shadow: none;
    transform: translateY(0) !important;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
    transition: background 0.3s ease;
}

.header-content,
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 8rem;
    /* increased header height */
    padding: 2rem 1rem;
    /* more breathing room vertically */
}

/* Brand Logo with Image */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: translateY(-2px);
}

.logo-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(234, 88, 12, 0.2);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.15);
    transition: all 0.3s ease;
}

.brand-logo:hover .logo-image {
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.3);
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.brand-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.brand-tagline {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #c2410c 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

/* Old logo style - keeping for backwards compatibility */
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: inline-block;
}

.logo:hover {
    transform: scale(1.05) rotateY(10deg);
}

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

/* Phone Link Styling */
.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.phone-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c2410c 0%, #9a3412 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.phone-link:hover::before {
    opacity: 1;
}

.phone-icon {
    font-size: 1.2rem;
    animation: ring 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes ring {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30% {
        transform: rotate(-15deg);
    }

    20%,
    40% {
        transform: rotate(15deg);
    }
}

.phone-number {
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

.phone-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

/* Old phone style - keeping for backwards compatibility */
.phone {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(249, 115, 22, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.phone::before {
    content: '📞';
    margin-right: 0.5rem;
    display: inline-block;
    animation: ring 2s ease-in-out infinite;
}

.phone:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

#langSwitch {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    background: var(--background);
    color: var(--text-color);
}

/* ============================================
   Navigation Menu Styles
   ============================================ */

/* Hamburger Menu Button */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 34px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: 1rem;
    z-index: 10003;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.menu-toggle.active {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.menu-icon {
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    transform-origin: center;
}

.menu-toggle.active .menu-icon:nth-child(1) {
    transform: translateY(11.5px) rotate(45deg);
}

.menu-toggle.active .menu-icon:nth-child(2) {
    opacity: 0;
    transform: translateX(-100%);
}

.menu-toggle.active .menu-icon:nth-child(3) {
    transform: translateY(-11.5px) rotate(-45deg);
}

/* Navigation Menu Overlay */
.nav-menu {
    position: fixed;
    top: 0;
    left: -350px;
    width: 300px;
    height: 100vh;
    /* restore original desktop behavior (full viewport height) */
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 10005;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.nav-menu.active {
    left: 0;
    pointer-events: auto;
}

.nav-menu-content {
    padding: 60px 30px 30px;
    position: relative;
}

.close-menu {
    display: none !important;
}


.nav-menu-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.nav-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu-list li {
    margin-bottom: 0.5rem;
}

.nav-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.25rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.nav-menu-link:hover {
    background: rgba(234, 88, 12, 0.08);
    transform: translateX(8px);
    color: var(--primary-color);
}

.nav-menu-link:hover::before {
    transform: scaleY(1);
}

.nav-menu-link:active {
    transform: translateX(4px) scale(0.98);
}

/* Menu Overlay Background */
.menu-overlay {
    display: none;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* ============================================
   End Navigation Menu Styles
   ============================================ */

/* Hero Section - Apple Style */
.hero {
    padding: 66px 0 100px;
    text-align: center;
    background: transparent;
    margin: 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #d2d2d7;
}

.hero-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.2);
    position: relative;
}

.hero-logo::before {
    content: '📊';
    font-size: 3rem;
    line-height: 1;
}

/* Business Name Styling - Apple Style */
.business-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.business-name-main {
    font-size: 21px;
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: 0.011em;
    line-height: 1.19048;
}

.business-name-tagline {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.005em;
    line-height: 1.07143;
}

.business-name-tagline::after {
    display: none;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.08349;
    letter-spacing: -0.003em;
    margin-bottom: 16px;
    color: var(--text-color);
}

.hero .lead {
    font-size: 21px;
    line-height: 1.381;
    font-weight: 400;
    letter-spacing: 0.011em;
    color: var(--light-text);
    max-width: 710px;
    margin: 0 auto 24px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Partnership Banner Section */
.partnership-banner {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.partnership-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.partnership-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.partnership-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    z-index: 1;
}

.partnership-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 3rem 2rem;
    text-align: center;
}

.partnership-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    padding: 1.75rem 3rem;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.4);
    display: inline-block;
    max-width: 90%;
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Brand Story Section - Apple Style */
/* Brand Story Section - Side by Side with Slideshow */
.brand-story {
    padding: 110px 0;
    background: transparent;
    position: relative;
    width: 100%;
}

.brand-story-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 100px 3rem;
    /* increased vertical padding to make card taller */
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* crop any overflowing decorative elements (shields, icons) */
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    background-clip: padding-box;
}

/* Center content on desktop */
@media (min-width: 769px) {
    .brand-story-wrapper {
        justify-items: center;
        align-items: center;
        text-align: center;
    }

    .brand-story-content-side {
        text-align: center;
    }

    .slide-content {
        text-align: center;
    }

    .brand-story-slideshow {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Responsive fixes for Brand Story section to avoid clipping on small screens */


/* Responsive fixes for Brand Story section to avoid clipping on small screens */
@media (max-width: 768px) {
    .brand-story {
        padding: 40px 0;
    }

    .brand-story-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 16px;
        border-radius: 16px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
        overflow: visible;
        /* allow shadows and elements to be visible */
        background-clip: border-box;
    }

    .brand-story-content-side {
        max-width: none;
        padding: 0;
    }

    .brand-story-content-side h2 {
        font-size: 26px;
        margin-bottom: 18px;
        text-align: center;
    }

    .brand-story-text,
    .brand-story-details,
    .brand-story-highlight,
    .brand-story-tagline {
        font-size: 15px;
    }

    .brand-story-details,
    .brand-story-highlight {
        padding: 20px;
        border-radius: 12px;
        margin: 18px 0;
    }

    .brand-story-slideshow {
        border-radius: 12px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
        overflow: visible;
    }

    .dog-slideshow-container {
        height: auto;
        /* remove fixed height */
        aspect-ratio: 16 / 9;
        min-height: 180px;
        border-radius: 12px 12px 0 0;
        background: #f5f5f7;
    }

    .dog-image {
        height: 100%;
        object-fit: cover;
        border-radius: 12px 12px 0 0;
    }

    .slideshow-content-bottom {
        padding: 16px;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .slide {
        padding: 18px 12px;
    }

    /* Reduce large margins that push content outside viewport */
    .brand-story-wrapper,
    .brand-story-slideshow,
    .brand-story-content-side {
        margin-left: 8px;
        margin-right: 8px;
    }
}

.brand-story-content-side {
    max-width: 800px;
}

.brand-story-icon {
    font-size: 60px;
    text-align: left;
    margin-bottom: 20px;
}

.brand-story-content-side h2 {
    text-align: left;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 32px;
    color: var(--text-color);
}

.brand-story-text {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 17px;
}

.brand-story-intro {
    font-size: 19px;
    line-height: 1.7;
    text-align: left;
    margin-bottom: 32px;
    color: var(--light-text);
    font-weight: 400;
}

.brand-story-intro strong {
    color: var(--text-color);
    font-weight: 600;
}

.brand-story-details {
    background: #ffffff;
    border-left: 5px solid var(--primary-color);
    padding: 32px 36px;
    border-radius: 24px;
    margin: 32px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.brand-story-details p {
    margin-bottom: 16px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.7;
}

.brand-story-details p:last-child {
    margin-bottom: 0;
}

.brand-story-details strong {
    color: var(--primary-color);
    font-weight: 700;
}

.brand-story-highlight {
    background: #ffffff;
    padding: 32px 36px;
    border-radius: 24px;
    margin: 32px 0;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.brand-story-highlight p {
    margin-bottom: 16px;
    color: var(--text-color);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
}

.brand-story-highlight p:last-child {
    margin-bottom: 0;
}

.brand-story-highlight strong {
    color: var(--primary-color);
    font-weight: 700;
}

.brand-story-tagline {
    text-align: left;
    font-size: 21px;
    line-height: 1.381;
    letter-spacing: 0.011em;
    margin-top: 32px;
    padding: 0;
    color: var(--text-color);
    font-weight: 600;
}

.brand-story-tagline strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Slideshow Styles */
.brand-story-slideshow {
    position: relative;
    width: 100%;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

/* Dog Image Slideshow at Top */
.dog-slideshow-container {
    width: 100%;
    /* keep the top image area a fixed flex-basis so it remains the same height
       while the bottom content area can grow/shrink as needed */
    flex: 0 0 560px;
    /* fixed top area height (flex-basis) */
    position: relative;
    flex-shrink: 0;
    background: #f5f5f7;
    border-radius: 30px 30px 0 0;
    height: auto;
    /* ensure height is driven by flex-basis not 'height' */
    min-height: 200px;
}

.dog-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0s linear 0.6s;
    z-index: 0;
}

.dog-slide.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease-in-out, visibility 0s linear 0s;
    z-index: 1;
}

.dog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 30px 30px 0 0;
}

/* Text Content at Bottom */
.slideshow-content-bottom {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    gap: 20px;
}

.slideshow-container {
    display: grid;
    width: 100%;
    justify-items: center;
    align-items: center;
}

.slide {
    background: #f5f5f7;
    border-radius: 20px;
    padding: 24px 28px;
    /* reduced top padding to pull content higher */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* keep content toward the top */
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    grid-area: 1 / 1;
    width: 100%;
}

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

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    text-align: center;
    width: 100%;
}

.slide-icon {
    font-size: 64px;
    /* larger icon to match taller card */
    margin-bottom: 8px;
    /* bring label closer to the emoji */
    display: inline-block;
    position: relative;
}

.slide:hover .slide-icon {
    animation: gentleBounce 3s ease-in-out infinite;
}

@keyframes gentleBounce {

    0%,
    100% {
        top: 0;
    }

    50% {
        top: -10px;
    }
}

.slide-content h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 6px;
    color: var(--text-color);
}

.slide-content p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--light-text);
    font-weight: 400;
}

.slideshow-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
    z-index: 2;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d2d2d7;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.dot.active {
    background: var(--apple-blue);
    width: 24px;
    border-radius: 4px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot.stretching {
    background: var(--apple-blue);
    width: 44px;
    border-radius: 4px;
}

.dot:hover {
    background: #86868b;
}

/* Responsive adjustments: top stays fixed, bottom stacks on narrow screens */
@media (max-width: 768px) {
    .dog-slideshow-container {
        flex: 0 0 320px;
        /* shorter fixed top area on mobile */
        min-height: 180px;
    }

    .slideshow-content-bottom {
        grid-template-columns: 1fr;
        /* stack slides vertically */
        padding: 16px;
        gap: 12px;
    }

    .slide {
        padding: 16px;
        /* reduce internal padding for mobile */
    }
}

/* Old container styles - keeping for backwards compatibility */
.brand-story-container {
    display: none;
}

/* Our Approach section - Apple Style */
.our-approach {
    padding: 110px 0;
    background: #f5f5f7;
    text-align: center;
    width: 100%;
}

/* Universal Section Header Styling - Apple Style */
section h2,
.testimonials h2,
.pricing h2,
.faq h2,
.services h2,
.our-approach h2,
.process h2,
.order h2 {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
    color: var(--text-color);
    position: relative;
    padding-bottom: 1.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    letter-spacing: -0.02em;
}

section h2::after,
.testimonials h2::after,
.pricing h2::after,
.faq h2::after,
.services h2::after,
.our-approach h2::after,
.process h2::after,
.order h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.3);
}

.our-approach h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.approach-item {
    padding: 3rem 2.5rem;
    background: #ffffff;
    border: none;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.approach-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.approach-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.approach-item:hover .approach-icon {
    transform: scale(1.1);
}

.approach-item h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.approach-item p {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 1rem;
}

/* Team Image Section */
.team-image {
    width: 100%;
    padding: 5rem 0;
    background: transparent;
}

.team-image-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    transition: all 0.3s ease;
    z-index: 1;
}

.team-image-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(249, 115, 22, 0.2);
}

.team-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.team-image-container:hover img {
    transform: scale(1.02);
}

.team-image-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(234, 88, 12, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.team-image-text {
    color: white;
    font-size: 1.25rem;
    margin: 0;
    text-align: center;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: transparent;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-color);
}

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

.testimonial-card {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0%, rgba(251, 146, 60, 0.12) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(249, 115, 22, 0.25);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -webkit-font-smoothing: subpixel-antialiased;
}

.testimonial-card:hover {
    transform: translateY(-4px) translateZ(0);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.2);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-stars {
    font-size: 1rem;
    color: #fbbf24;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-details {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 420ms cubic-bezier(.2, .9, .2, 1), opacity 320ms ease-out;
    transform: translateZ(0);
    max-height: 0;
}

.testimonial-card.expanded .testimonial-details {
    opacity: 1;
    max-height: 1000px;
}

.testimonial-content {
    padding: 1rem 0;
    opacity: 0;
    transition: opacity 320ms ease-out 120ms;
    visibility: hidden;
}

.testimonial-card.expanded .testimonial-content {
    opacity: 1;
    visibility: visible;
}

.testimonial-full {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: transparent;
    width: 100%;
    margin: 0;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-color);
    padding: 0 2rem;
}

/* Pricing Container with Period Selector */
.pricing-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    align-items: center;
}

/* Period Selector Buttons */
.pricing-period-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.period-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(249, 115, 22, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.period-btn:hover {
    background: rgba(249, 115, 22, 0.05);
    border-color: rgba(249, 115, 22, 0.4);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
}

.period-btn.active {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-color: #f97316;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
    transform: translateX(4px);
}

.period-btn.active .period-label,
.period-btn.active .period-text {
    color: white;
}

.period-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.period-text {
    font-size: 0.75rem;
    color: var(--light-text);
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    flex: 1;
    align-items: stretch;
    justify-items: stretch;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 1.2rem;
}

/* Center single pricing card and limit its width */
.pricing-grid[data-card-count="1"] {
    grid-template-columns: minmax(220px, 340px);
    justify-content: center;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 1.2rem;
}

/* 5-card layout: 3 on top, 2 below, centered */
.pricing-grid[data-card-count="5"] {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    grid-template-rows: repeat(2, 1fr);
    justify-content: center;
    padding-bottom: 1.2rem;
}

.pricing-grid[data-card-count="5"]>.price-plan-1 {
    grid-row: 1;
    grid-column: 1;
}

.pricing-grid[data-card-count="5"]>.price-plan-2 {
    grid-row: 1;
    grid-column: 2;
}

.pricing-grid[data-card-count="5"]>.price-plan-3 {
    grid-row: 1;
    grid-column: 3;
}

.pricing-grid[data-card-count="5"]>.price-plan-4 {
    grid-row: 2;
    grid-column: 2;
}

.pricing-grid[data-card-count="5"]>.price-plan-5 {
    grid-row: 2;
    grid-column: 3;
}

/* Center when fewer than 5 cards */
.pricing-grid:has(:only-child) {
    grid-template-columns: minmax(220px, 340px);
    justify-content: center;
    padding-bottom: 1.2rem;
}

@media (max-width: 1400px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

/* Desktop overrides to ensure horizontal layout */
@media (min-width: 992px) {
    .pricing-grid[data-card-count="3"] {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        /* Allow more width for 3 cards side-by-side */
    }

    .pricing-grid[data-card-count="2"] {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }

    .pricing-grid[data-card-count="4"] {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1400px;
    }
}

/* ============================================
   MOBILE QUICK ACCESS MENU
   ============================================ */

.mobile-quick-access {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px;
    background: #f5f5f7;
    margin: 0 0 20px 0;
}

.quick-access-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.quick-access-card:active {
    transform: scale(0.97);
}

.quick-access-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.quick-access-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

.quick-access-services {
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
    border-left: 4px solid #f97316;
}

.quick-access-pricing {
    background: linear-gradient(135deg, #fef3c7 0%, #ffffff 100%);
    border-left: 4px solid #f59e0b;
}

.quick-access-contact {
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
    border-left: 4px solid #ef4444;
}

.quick-access-call {
    background: linear-gradient(135deg, #dcfce7 0%, #ffffff 100%);
    border-left: 4px solid #22c55e;
}

/* ============================================
   RESPONSIVE DESIGN - TABLETS & MOBILE
   ============================================ */

@media (max-width: 1024px) {
    .mobile-quick-access {
        display: grid;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .business-name-tagline {
        font-size: 42px;
    }

    .brand-story-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 4.5rem;
    }

    .approach-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        padding: 0 1rem;
    }

    .pricing-container {
        max-width: 100%;
        padding: 0 1rem;
        gap: 1rem;
    }

    .pricing-grid {
        gap: 0.75rem;
    }

    .pricing-period-selector {
        min-width: 140px;
        max-width: 140px;
    }
}

@media (max-width: 768px) {
    .mobile-quick-access {
        display: grid;
        margin: 0;
        border-radius: 0;
    }

    .site-header {
        padding: 24px 0;
        /* increase mobile header padding to make menu taller */
    }

    .brand-text {
        display: none;
    }

    .logo-image {
        width: 70px;
        height: 70px;
    }

    .phone-number {
        display: none;
    }

    .phone-link {
        padding: 10px 14px;
    }

    /* Make the navigation menu full-screen on mobile */
    .nav-menu {
        left: -100%;
        /* hidden off-canvas to the left */
        width: 100%;
        min-height: 100vh;
        /* ensure at least full viewport height on mobile */
        box-shadow: none;
        border-right: none;
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active {
        left: 0;
        pointer-events: auto;
    }

    .nav-menu-content {
        padding: 90px 28px 30px;
        /* leave space for taller header */
        box-sizing: border-box;
    }

    .nav-menu-list {
        display: flex;
        flex-direction: column;
        gap: 18px;
        font-size: 1.05rem;
        padding-left: 0;
    }

    /* Dark backdrop overlay when menu opens */
    .menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        opacity: 0;
        transition: opacity 0.25s ease;
        pointer-events: none;
        z-index: 10000;
    }

    /* When menu is active, show overlay */
    .nav-menu.active+.menu-overlay,
    .menu-overlay.active,
    .menu-overlay.show {
        opacity: 1;
        pointer-events: auto;
    }

    /* Layout nav content for scrolling — start at top so content isn't clipped */
    .nav-menu-content {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* anchor content at top so it can scroll */
        align-items: center;
        padding: 80px 28px;
        /* balanced padding */
        box-sizing: border-box;
    }

    .nav-menu-list {
        width: 100%;
        max-width: 420px;
        display: flex;
        flex-direction: column;
        gap: 22px;
        font-size: 1.15rem;
        text-align: center;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .nav-menu-link {
        display: block;
        padding: 14px 18px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.95);
        color: var(--text-color);
        text-decoration: none;
        font-weight: 700;
    }

    .nav-menu-link:active,
    .nav-menu-link:focus,
    .nav-menu-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .close-menu {
        top: 22px;
        right: 20px;
        font-size: 28px;
    }

    .hero {
        padding: 30px 0 40px;
    }

    .hero-logo {
        width: 60px;
        height: 60px;
    }

    .business-name-main {
        font-size: 16px;
    }

    .business-name-tagline {
        font-size: 32px;
    }

    .hero h1 {
        font-size: 28px;
        padding: 0 1rem;
    }

    .hero .lead {
        font-size: 17px;
        padding: 0 1rem;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

    .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
    }

    .brand-story {
        padding: 60px 0;
    }

    .brand-story-wrapper {
        padding: 30px 1rem;
        gap: 30px;
    }

    .brand-story-content-side h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .brand-story-intro {
        font-size: 17px;
    }

    .brand-story-details,
    .brand-story-highlight {
        padding: 20px 24px;
        margin: 20px 0;
    }

    .slideshow-content-bottom {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 12px;
    }

    .slide {
        padding: 20px 16px;
    }

    .slide-icon {
        font-size: 36px;
    }

    .slide-content h3 {
        font-size: 18px;
    }

    .slide-content p {
        font-size: 13px;
    }

    .our-approach {
        padding: 60px 0;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .approach-item {
        padding: 2rem 1.5rem;
    }

    .team-image-container {
        border-radius: 20px;
        padding: 1rem;
    }

    .team-image-text {
        font-size: 1rem;
    }

    .pricing {
        padding: 60px 0;
    }

    section h2 {
        font-size: 28px;
        margin-bottom: 2rem;
    }

    .pricing-container {
        flex-direction: column;
    }

    .pricing-period-selector {
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 100%;
        min-width: 100%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .price-plan-2.featured {
        transform: translateZ(0) !important;
    }

    .site-footer {
        padding: 40px 0 20px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-address {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .quick-access-card {
        min-height: 90px;
        padding: 20px 12px;
    }

    .quick-access-icon {
        font-size: 2rem;
    }

    .quick-access-label {
        font-size: 0.85rem;
    }

    .hero h1 {
        font-size: 24px;
    }

    .business-name-tagline {
        font-size: 28px;
    }

    .brand-story-content-side h2 {
        font-size: 24px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 48px;
    }

    .quick-access-card {
        min-height: 100px;
    }

    .nav-menu-link {
        padding: 1rem 1.5rem;
        font-size: 1.2rem;
    }
}

.pricing-card {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(251, 146, 60, 0.15) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(249, 115, 22, 0.3);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    transform: translateZ(0);
}

.pricing-card:hover {
    transform: translateY(-4px) translateZ(0);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.2);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #ea580c, #c2410c);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    font-weight: 700;
}

.pricing-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-brief {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pricing-details {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 420ms cubic-bezier(.2, .9, .2, 1), opacity 320ms ease-out;
    transform: translateZ(0);
    max-height: 0;
}

.pricing-card.expanded .pricing-details {
    opacity: 1;
    max-height: 1000px;
}

.pricing-content {
    padding: 1rem 0;
    opacity: 0;
    transition: opacity 320ms ease-out 120ms;
    visibility: hidden;
}

.pricing-card.expanded .pricing-content {
    opacity: 1;
    visibility: visible;
}

.pricing-content h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.pricing-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.pricing-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
    line-height: 1.6;
}

.pricing-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

/* Testimonials Toggle Button */
.testimonials-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    margin-bottom: 0;
}

.testimonials-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c2410c 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.testimonials-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

.testimonials-toggle-btn:active {
    transform: translateY(0);
}

.toggle-chevron {
    transition: transform 0.3s ease;
}

/* Pricing Toggle Button */
.pricing-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    margin-bottom: 0;
}

.pricing-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c2410c 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.pricing-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

.pricing-toggle-btn:active {
    transform: translateY(0);
}

/* FAQ Toggle Button */
.faq-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    margin-bottom: 0;
}

.faq-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c2410c 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.faq-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

.faq-toggle-btn:active {
    transform: translateY(0);
}

/* Steps Toggle Button */
.steps-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    margin-bottom: 0;
}

.steps-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c2410c 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.steps-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

.steps-toggle-btn:active {
    transform: translateY(0);
}

/* Services Toggle Button */
.services-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    margin-bottom: 0;
}

.services-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c2410c 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.services-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

.services-toggle-btn:active {
    transform: translateY(0);
}

/* New Review Box Styles (matching testimonial-card) */
.review-box-1,
.review-box-2,
.review-box-3 {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(249, 250, 251, 0.85) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(249, 115, 22, 0.12);
    box-shadow:
        0 8px 32px rgba(249, 115, 22, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
    position: relative;
}

.review-box-1:hover,
.review-box-2:hover,
.review-box-3:hover {
    transform: translateY(-6px) translateZ(0);
    border-color: rgba(249, 115, 22, 0.2);
    box-shadow:
        0 16px 48px rgba(249, 115, 22, 0.25),
        0 4px 16px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.7) inset;
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-stars {
    font-size: 1rem;
    color: #fbbf24;
    display: inline-block;
}

.review-stars::before {
    content: attr(data-rating);
}

.review-box-1:hover .review-stars,
.review-box-2:hover .review-stars,
.review-box-3:hover .review-stars {
    animation: starPulse 0.5s ease-in-out;
}

@keyframes starPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
        filter: brightness(1.3);
    }
}

.review-short {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.review-hidden-1,
.review-hidden-2,
.review-hidden-3 {
    display: none;
}

.review-box-1.active .review-hidden-1,
.review-box-2.active .review-hidden-2,
.review-box-3.active .review-hidden-3 {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.review-text-1,
.review-text-2,
.review-text-3 {
    padding: 1rem 0;
}

.review-long {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.review-signature {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* Individual Review Expand Buttons */
.review-expand-btn {
    display: none !important;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-color);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    color: var(--primary-color);
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}

.review-expand-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.review-expand-btn .expand-icon {
    transition: transform 0.3s ease;
    display: block;
}

.review-box-1.active .review-expand-btn .expand-icon,
.review-box-2.active .review-expand-btn .expand-icon,
.review-box-3.active .review-expand-btn .expand-icon {
    transform: rotate(45deg);
}

.review-box-1.active .review-expand-btn,
.review-box-2.active .review-expand-btn,
.review-box-3.active .review-expand-btn {
    background: var(--primary-color);
    color: white;
}

/* Unified square pricing cards */
.price-plan-1,
.price-plan-2,
.price-plan-3,
.price-plan-4,
.price-plan-5 {
    background: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2.4rem 1.6rem 1.7rem 1.6rem;
    border-radius: 20px;
    border: 2px solid rgba(249, 115, 22, 0.13);
    box-shadow: 0 8px 36px rgba(249, 115, 22, 0.11);
    position: relative;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    min-height: 340px;
    max-width: 260px;
    width: 100%;
    aspect-ratio: 0.85 / 1;
    overflow: hidden;
    height: 100%;
}

.price-plan-1:hover,
.price-plan-2:hover,
.price-plan-3:hover,
.price-plan-4:hover,
.price-plan-5:hover {
    transform: translateY(-8px) scale(1.04);
    border-color: rgba(249, 115, 22, 0.22);
    box-shadow: 0 18px 44px rgba(249, 115, 22, 0.16);
}

.price-plan-2.featured {
    border: 2px solid #f97316;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 237, 213, 0.95) 60%, rgba(255, 247, 237, 1) 100%);
    box-shadow: 0 8px 28px rgba(234, 88, 12, 0.35);
}

.price-plan-2.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    background: radial-gradient(circle at 30% 20%, rgba(96, 165, 250, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.price-plan-2.featured::after {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 20px;
    background: radial-gradient(ellipse at center, rgba(251, 146, 60, 0.15) 0%, transparent 70%);
    z-index: -1;
    filter: blur(20px);
    opacity: 0.8;
}

.price-plan-2.featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(234, 88, 12, 0.45);
}

.plan-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-color), #dc2626);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
    z-index: 10;
}

.plan-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.6rem;
}

.plan-top h3 {
    font-size: 1.22rem;
    color: #222;
    font-weight: 700;
    margin: 0 0 0.18rem 0;
}

/* Individual Plan Expand Buttons */
.plan-expand-btn {
    display: none !important;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-color);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    color: var(--primary-color);
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}

.plan-expand-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.plan-expand-btn .expand-icon {
    transition: transform 0.3s ease;
    display: block;
}

.price-plan-1.active .plan-expand-btn .expand-icon,
.price-plan-2.active .plan-expand-btn .expand-icon,
.price-plan-3.active .plan-expand-btn .expand-icon {
    transform: rotate(45deg);
}

.price-plan-1.active .plan-expand-btn,
.price-plan-2.active .plan-expand-btn,
.price-plan-3.active .plan-expand-btn {
    background: var(--primary-color);
    color: white;
}

.plan-cost {
    font-size: 2.5rem;
    font-weight: 900;
    color: #f97316;
    /* Fallback for browsers that don't support background-clip */
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    display: block;
}

/* Scrollable feature lists inside square cards */
.price-plan-1 ul,
.price-plan-2 ul,
.price-plan-3 ul,
.price-plan-4 ul,
.price-plan-5 ul {
    font-size: 1rem;
    line-height: 1.4;
    margin: 0 0 1rem 0;
    padding-left: 0.5rem;
    max-height: 120px;
    overflow: auto;
    scrollbar-width: thin;
}

.price-plan-1 ul::-webkit-scrollbar,
.price-plan-2 ul::-webkit-scrollbar,
.price-plan-3 ul::-webkit-scrollbar,
.price-plan-4 ul::-webkit-scrollbar,
.price-plan-5 ul::-webkit-scrollbar {
    width: 6px;
}

.price-plan-1 ul::-webkit-scrollbar-track,
.price-plan-2 ul::-webkit-scrollbar-track,
.price-plan-3 ul::-webkit-scrollbar-track,
.price-plan-4 ul::-webkit-scrollbar-track,
.price-plan-5 ul::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.price-plan-1 ul::-webkit-scrollbar-thumb,
.price-plan-2 ul::-webkit-scrollbar-thumb,
.price-plan-3 ul::-webkit-scrollbar-thumb,
.price-plan-4 ul::-webkit-scrollbar-thumb,
.price-plan-5 ul::-webkit-scrollbar-thumb {
    background: rgba(249, 115, 22, 0.5);
    border-radius: 10px;
}

.plan-summary {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.plan-hidden-1,
.plan-hidden-2,
.plan-hidden-3 {
    display: none;
}

.price-plan-1.active .plan-hidden-1,
.price-plan-2.active .plan-hidden-2,
.price-plan-3.active .plan-hidden-3 {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

.plan-info-1,
.plan-info-2,
.plan-info-3 {
    padding: 1rem 0 0.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: block;
    gap: 0.5rem;
    min-height: unset;
}

.plan-info-1 h4,
.plan-info-2 h4,
.plan-info-3 h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.plan-info-1 a.btn,
.plan-info-2 a.btn,
.plan-info-3 a.btn,
.plan-info-4 a.btn,
.plan-info-5 a.btn {
    margin-top: 0.5rem;
    margin-bottom: 0.2rem;
    width: 100%;
    font-size: 0.8em;
    padding: 0.9rem 0;
    position: static;
}

.plan-info-1 ul,
.plan-info-2 ul,
.plan-info-3 ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.plan-info-1 ul li,
.plan-info-2 ul li,
.plan-info-3 ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
    line-height: 1.6;
}

.plan-info-1 ul li::before,
.plan-info-2 ul li::before,
.plan-info-3 ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

/* New Question Box Styles (matching faq-item) */
.question-box-1,
.question-box-2,
.question-box-3,
.question-box-4,
.question-box-5 {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(249, 250, 251, 0.85) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.75rem 2.25rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 6px 24px rgba(249, 115, 22, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
}

.question-box-1:hover,
.question-box-2:hover,
.question-box-3:hover,
.question-box-4:hover,
.question-box-5:hover {
    transform: translateY(-3px) translateZ(0);
    box-shadow:
        0 12px 36px rgba(249, 115, 22, 0.18),
        0 4px 12px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.7) inset;
    border-color: rgba(249, 115, 22, 0.3);
}

.question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.question-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #f97316;
    margin-bottom: 0.6rem;
    margin-top: 0.18rem;
    min-height: 2.6rem;
    letter-spacing: -0.01em;
}

.question-hidden-1,
.question-hidden-2,
.question-hidden-3,
.question-hidden-4,
.question-hidden-5 {
    display: none;
}

.question-box-1.active .question-hidden-1,
.question-box-2.active .question-hidden-2,
.question-box-3.active .question-hidden-3,
.question-box-4.active .question-hidden-4,
.question-box-5.active .question-hidden-5 {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

.question-text-1,
.question-text-2,
.question-text-3,
.question-text-4,
.question-text-5 {
    padding: 1rem 0 0.5rem;
}

.question-text-1 p,
.question-text-2 p,
.question-text-3 p,
.question-text-4 p,
.question-text-5 p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Button styles for new elements */
.plan-toggle-1,
.plan-toggle-2,
.plan-toggle-3,
.question-toggle-1,
.question-toggle-2,
.question-toggle-3,
.question-toggle-4,
.question-toggle-5,
.step-toggle-1,
.step-toggle-2,
.step-toggle-3,
.step-toggle-4,
.question-toggle-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.plan-toggle-1:hover,
.plan-toggle-2:hover,
.plan-toggle-3:hover,
.question-toggle-1:hover,
.question-toggle-2:hover,
.question-toggle-3:hover,
.question-toggle-4:hover,
.question-toggle-5:hover,
.step-toggle-1:hover,
.step-toggle-2:hover,
.step-toggle-3:hover,
.step-toggle-4:hover,
.question-toggle-btn:hover {
    background: rgba(249, 115, 22, 0.1);
}

.chevron-icon,
.arrow-icon,
.plus-icon,
.down-icon {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.price-plan-1.active .arrow-icon,
.price-plan-2.active .arrow-icon,
.price-plan-3.active .arrow-icon,
.question-box-1.active .plus-icon,
.question-box-2.active .plus-icon,
.question-box-3.active .plus-icon,
.question-box-4.active .plus-icon,
.question-box-5.active .plus-icon,
.step-box-1.active .down-icon,
.step-box-2.active .down-icon,
.step-box-3.active .down-icon,
.step-box-4.active .down-icon {
    transform: rotate(180deg);
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: transparent;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question h3 {
    font-size: 1.15rem;
    color: var(--text-color);
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-answer {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 420ms cubic-bezier(.2, .9, .2, 1), opacity 320ms ease-out;
    transform: translateZ(0);
    max-height: 0;
}

.faq-item.expanded .faq-answer {
    opacity: 1;
    max-height: 1000px;
}

.faq-content {
    padding: 1rem 0 0;
    opacity: 0;
    transition: opacity 320ms ease-out 120ms;
    visibility: hidden;
}

.faq-item.expanded .faq-content {
    opacity: 1;
    visibility: visible;
}

.faq-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Process Timeline Section */
.process-timeline {
    padding: 5rem 0;
    background: transparent;
    position: relative;
}

.process-timeline h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--text-color);
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 5rem 4rem;
    position: relative;
    align-items: center;
}

/* Horizontal timeline line - removed */
.timeline-grid::before {
    display: none;
}

/* New Step Box Styles - all same size with arrows */
.step-box-1,
.step-box-2,
.step-box-3,
.step-box-4 {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(249, 115, 22, 0.15);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

/* Arrow between steps */
.step-box-1::after,
.step-box-2::after,
.step-box-3::after {
    content: '';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid rgba(249, 115, 22, 0.5);
    z-index: 1;
}

.step-box-4::after {
    display: none;
}

.step-box-1:hover,
.step-box-2:hover,
.step-box-3:hover,
.step-box-4:hover {
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.2);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-4px);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #dc2626 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
}

.step-box-1:hover .step-number,
.step-box-2:hover .step-number,
.step-box-3:hover .step-number,
.step-box-4:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.step-header h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    font-weight: 700;
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

.step-summary {
    color: var(--light-text);
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

.step-hidden-1,
.step-hidden-2,
.step-hidden-3,
.step-hidden-4 {
    display: none;
}

.step-box-1.active .step-hidden-1,
.step-box-2.active .step-hidden-2,
.step-box-3.active .step-hidden-3,
.step-box-4.active .step-hidden-4 {
    display: block;
    animation: fadeIn 0.4s ease-in;
}

.step-info-1,
.step-info-2,
.step-info-3,
.step-info-4 {
    padding: 1.5rem 0 0;
    border-top: 1px solid rgba(249, 115, 22, 0.1);
    margin-top: 1.5rem;
}

.step-info-1 p,
.step-info-2 p,
.step-info-3 p,
.step-info-4 p {
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}


.timeline-item {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    transform: translateZ(0);
}

.timeline-item:hover {
    transform: translateY(-4px) translateZ(0);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.2);
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.timeline-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ea580c, #c2410c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.timeline-header h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.timeline-brief {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.timeline-details {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 420ms cubic-bezier(.2, .9, .2, 1), opacity 320ms ease-out;
    transform: translateZ(0);
    max-height: 0;
}

.timeline-item.expanded .timeline-details {
    opacity: 1;
    max-height: 1000px;
}

.timeline-content {
    padding: 1rem 0;
    opacity: 0;
    transition: opacity 320ms ease-out 120ms;
    visibility: hidden;
}

.timeline-item.expanded .timeline-content {
    opacity: 1;
    visibility: visible;
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: transparent;
}

.services h2 {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-color);
}

/* Modern Service Card */
.service-card-modern {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 247, 237, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 3rem 3.5rem;
    border: 2px solid rgba(249, 115, 22, 0.2);
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.12);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
    pointer-events: none;
}

.service-card-modern:hover {
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow: 0 12px 48px rgba(249, 115, 22, 0.2);
    transform: translateY(-4px);
}

.service-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
}

.service-description {
    font-size: 1.125rem;
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

.service-expandable {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.service-expandable.collapsed {
    display: none;
}

.service-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 2rem 0 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-subtitle::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 2px;
}

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

.service-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.6;
}

.service-why {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(249, 115, 22, 0.02) 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    position: relative;
}

.service-why::before {
    content: '💡';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    opacity: 0.3;
}

.btn-order-service {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1.5rem;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-order-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-order-service:hover::before {
    left: 100%;
}

.btn-order-service::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-order-service:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.45);
}

.btn-order-service:hover::after {
    transform: translateX(4px);
}

/* Processing Methods */
.processing-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.method-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 247, 237, 0.7) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 2px solid rgba(249, 115, 22, 0.15);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.method-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(249, 115, 22, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.method-item:hover::before {
    opacity: 1;
}

.method-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.25);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 12px rgba(249, 115, 22, 0.3));
    transition: transform 0.4s ease;
}

.method-item:hover .method-icon {
    transform: scale(1.1) rotateY(180deg);
}

.method-item h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.method-item p {
    font-size: 0.9rem;
    color: var(--light-text);
    margin: 0;
    line-height: 1.4;
}

.btn-toggle-service {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 2rem;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-toggle-service:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(234, 88, 12, 0.4);
}

.btn-toggle-service .toggle-icon {
    transition: transform 0.3s ease;
}

.btn-toggle-service.collapsed .toggle-icon {
    transform: rotate(180deg);
}

/* Old styles kept for compatibility */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem auto 0;
    max-width: 1200px;
}

.services-grid-single {
    display: flex;
    justify-content: center;
    margin: 3rem auto 0;
    max-width: 800px;
}

.services-grid-single .service-card {
    width: 100%;
    max-width: 700px;
}

.service-card {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(251, 146, 60, 0.1) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(249, 115, 22, 0.25);
    box-shadow: 0 4px 16px 0 rgba(249, 115, 22, 0.08);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.3s ease;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -webkit-font-smoothing: subpixel-antialiased;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px) translateZ(0);
    box-shadow: 0 8px 24px 0 rgba(249, 115, 22, 0.15);
    background: rgba(255, 255, 255, 0.85);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(147, 197, 253, 0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.expanded {
    transform: translateZ(0);
    box-shadow: 0 8px 24px 0 rgba(249, 115, 22, 0.15);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.expand-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.expand-icon {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.service-card.expanded .expand-icon {
    transform: rotate(180deg);
}

.service-brief {
    margin-bottom: 1rem;
    color: var(--light-text);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.expand-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--primary-color);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.expand-icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    display: block;
}

.service-card.expanded .expand-icon {
    transform: rotate(180deg);
}

.expand-btn:hover {
    transform: scale(1.1);
}

.service-brief {
    margin-bottom: 1rem;
}

.service-details {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 420ms cubic-bezier(.2, .9, .2, 1),
        opacity 320ms ease-out;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -webkit-font-smoothing: subpixel-antialiased;
}

.service-content {
    padding: 1rem 0;
    opacity: 0;
    transition: opacity 320ms ease-out 120ms;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -webkit-font-smoothing: subpixel-antialiased;
}

.service-card.expanded {
    z-index: 1;
    position: relative;
}

.service-card.expanded .service-details {
    height: auto;
    opacity: 1;
}

.service-card.expanded .service-content {
    opacity: 1;
}

.expand-icon {
    transition: transform 0.3s ease-out;
}

.service-card.expanded .expand-icon {
    transform: rotate(-180deg);
}

.service-content {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s,
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    will-change: opacity, transform;
}

.service-card.expanded .service-content {
    opacity: 1;
    transform: translateY(0);
}

.service-content h4 {
    color: var(--text-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-content li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.service-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary-color);
    border-radius: 50%;
}

.service-cta {
    margin-top: auto;
    padding-top: 1.5rem;
    width: 100%;
    display: block;
    text-align: center;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card p {
    color: var(--light-text);
}

/* Order Form Section */
.order {
    padding: 5rem 0;
    background: transparent;
}

.order h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-info {
    max-width: 32rem;
    margin: 2rem auto;
    display: flex;
    justify-content: center;
}

.address-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(251, 146, 60, 0.1) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.75rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.2);
    transition: all 0.3s ease;
}

.address-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.18);
}

.address-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.address-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.address-details p {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.5;
    margin: 0;
}

form {
    max-width: 42rem;
    margin: 3rem auto 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.12);
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

form:hover {
    border-color: rgba(249, 115, 22, 0.2);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.2);
}

form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 1rem 1rem 0 0;
}

label {
    display: block;
    margin-bottom: 1.5rem;
}

label span {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

input,
select,
textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    background: var(--light-background);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Better mobile input focus - prevent zoom on iOS */
@media (max-width: 768px) {

    input,
    select,
    textarea {
        font-size: 16px;
        /* Prevents iOS zoom on focus */
        padding: 1rem;
    }
}

input:hover,
select:hover,
textarea:hover {
    border-color: var(--primary-color);
    background: var(--background);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--background);
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.1);
}

input.error,
select.error,
textarea.error {
    border-color: var(--error-color);
    background: rgba(220, 38, 38, 0.05);
}

input.error:focus,
select.error:focus,
textarea.error:focus {
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Buttons - Apple Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 22px;
    font-size: 17px;
    font-weight: 400;
    border-radius: 980px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    position: relative;
    transition: all 0.2s ease;
    overflow: visible;
    backface-visibility: hidden;
    transform: translateZ(0);
    text-transform: none;
    letter-spacing: -0.022em;
    line-height: 1.17648;
    min-width: 28px;
}

.btn::before {
    display: none;
}

.btn:hover::before {
    display: none;
}

.btn.primary {
    background: var(--apple-blue);
    background-size: 100%;
    color: white;
    box-shadow: none;
    transition: all 0.2s ease;
    animation: none;
    position: relative;
    overflow: visible;
}

.btn.primary:hover {
    background: #ea580c;
    transform: scale(1);
    box-shadow: none;
}

.btn.outline {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid var(--apple-blue);
    color: var(--apple-blue);
    box-shadow: none;
    transition: all 0.2s ease;
    position: relative;
    overflow: visible;
}

.btn.outline::after {
    display: none;
}

.btn.outline:hover {
    background: var(--apple-blue);
    color: white;
    transform: scale(1);
    box-shadow: none;
}

.btn.outline:hover::after {
    display: none;
}

.btn:active {
    transform: scale(0.98);
    box-shadow: none;
}

/* Alert Messages */
.alert {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    color: #166534;
}

.alert-error {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #991b1b;
}

.alert-icon {
    font-size: 1.5rem;
    font-weight: bold;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alert-success .alert-icon {
    background: #22c55e;
    color: white;
}

.alert-error .alert-icon {
    background: #ef4444;
    color: white;
}

.alert-text {
    flex: 1;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {

    /* Navigation Menu responsive */
    .nav-menu {
        width: 280px;
        left: -280px;
    }

    .nav-menu-content {
        padding: 80px 20px 20px;
    }

    .nav-menu-title {
        font-size: 1.5rem;
    }

    .nav-menu-link {
        font-size: 1rem;
        padding: 0.875rem 1rem;
    }

    /* Header responsive */
    .header-inner {
        height: auto;
        padding: 0.75rem 0;
    }

    .brand-logo {
        gap: 0.75rem;
    }

    .logo-image {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }

    .brand-text {
        gap: 0;
    }

    .brand-name {
        font-size: 0.85rem;
    }

    .brand-tagline {
        font-size: 0.95rem;
    }

    .phone-link {
        padding: 0.6rem 1rem;
        gap: 0.4rem;
    }

    .phone-number {
        font-size: 0.85rem;
    }

    .phone-icon {
        font-size: 1rem;
    }

    /* Business name responsive */
    .business-name-main {
        font-size: 1.5rem;
    }

    .business-name-tagline {
        font-size: 1.75rem;
    }

    .business-name-tagline::after {
        width: 80px;
    }

    /* Brand Story responsive */
    .brand-story {
        padding: 60px 0;
    }

    .brand-story-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 22px;
    }

    .brand-story-content-side {
        max-width: 100%;
    }

    .brand-story-icon {
        font-size: 50px;
        margin-bottom: 16px;
        text-align: center;
    }

    .brand-story-content-side h2 {
        font-size: 32px;
        text-align: center;
        margin-bottom: 20px;
    }

    .brand-story-intro {
        font-size: 17px;
        text-align: center;
        margin-bottom: 24px;
    }

    .brand-story-details {
        padding: 16px 20px;
        margin: 24px 0;
    }

    .brand-story-details p {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .brand-story-highlight {
        padding: 20px;
        margin: 24px 0;
    }

    .brand-story-highlight p {
        font-size: 15px;
    }

    .brand-story-tagline {
        font-size: 19px;
        text-align: center;
        margin-top: 24px;
    }

    .brand-story-slideshow {
        height: 500px;
    }

    .dog-slideshow-container {
        height: 300px;
    }

    .slide {
        padding: 20px;
    }

    .slide-icon {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .slide-content h3 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .slide-content p {
        font-size: 14px;
    }

    /* Partnership banner mobile */
    .partnership-image-wrapper {
        height: 300px;
    }

    .partnership-content h2 {
        font-size: 1.5rem;
        padding: 1.5rem 2rem;
        max-width: 95%;
    }

    .slideshow-dots {
        padding: 15px 0;
    }

    .slide-icon {
        font-size: 80px;
        margin-bottom: 24px;
    }

    .slide-content h3 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .slide-content p {
        font-size: 17px;
    }

    .slideshow-dots {
        bottom: 24px;
    }

    /* Old container styles - keeping for backwards compatibility */
    .brand-story-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    /* Container padding for all mobile sections */
    .container {
        padding: 0 1.25rem;
    }

    /* Header adjustments */
    header {
        padding: 1rem 1.25rem;
    }

    .brand {
        font-size: 1.25rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .phone {
        display: none;
    }

    /* Hero section - make it more compact */
    .hero {
        padding: 2.5rem 1.5rem;
        margin: 1.5rem 1rem;
        border-radius: 16px;
    }

    .hero-logo {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
        border-radius: 20px;
    }

    .hero-logo::before {
        font-size: 2.75rem;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.25;
        margin-bottom: 0.75rem;
    }

    .hero .lead {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero-ctas {
        gap: 1rem;
        margin-top: 2rem;
        flex-direction: column;
    }

    .btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Approach section */
    .our-approach {
        padding: 3rem 0;
    }

    .our-approach h2 {
        font-size: 2rem;
        padding: 0 1.25rem;
        margin-bottom: 0.75rem;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 0 1.25rem;
    }

    .approach-item {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .approach-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .approach-item h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .approach-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Team image on mobile */
    .team-image {
        display: none;
    }

    .team-image-container {
        margin: 0 1.25rem;
        padding: 0.75rem;
        border-radius: 16px;
    }

    .team-image-container img {
        max-height: 250px;
        border-radius: 12px;
    }

    .team-image-overlay {
        bottom: 0.75rem;
        left: 0.75rem;
        right: 0.75rem;
        padding: 1.25rem 1.5rem;
        border-radius: 12px;
    }

    .team-image-text {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Services section */
    .services {
        padding: 3rem 0;
    }

    .services h2 {
        font-size: 2rem;
        padding: 0 1.25rem;
        margin-bottom: 2rem;
    }

    .service-card-modern {
        margin: 0 1.25rem;
        padding: 2rem 1.75rem;
        border-radius: 20px;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .service-description {
        font-size: 1rem;
    }

    .service-subtitle {
        font-size: 1.1rem;
    }

    .service-list li {
        font-size: 0.95rem;
    }

    .btn-order-service {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .processing-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .method-item {
        padding: 1.25rem;
    }

    .method-icon {
        font-size: 2rem;
    }

    .method-item h5 {
        font-size: 1rem;
    }

    .method-item p {
        font-size: 0.85rem;
    }

    .btn-toggle-service {
        font-size: 0.95rem;
        padding: 0.875rem;
    }

    /* Old service grid styles */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 0 1.25rem;
    }

    .services-grid-single {
        padding: 0 1.25rem;
        margin-top: 2rem;
    }

    .service-card {
        padding: 1.75rem 1.5rem;
        border-radius: 16px;
    }

    .service-card h3 {
        font-size: 1.35rem;
    }

    .service-brief,
    .service-details {
        font-size: 0.95rem;
    }

    /* Order form section */
    .order {
        padding: 3rem 0;
    }

    .order h2 {
        font-size: 2rem;
        padding: 0 1.25rem;
        margin-bottom: 0.75rem;
    }

    .contact-info {
        margin: 1.5rem 1.25rem;
    }

    .address-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .address-icon {
        font-size: 2rem;
    }

    form {
        margin: 2rem 1.25rem 0;
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    label {
        margin-bottom: 1.25rem;
    }

    label span {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    input,
    select,
    textarea {
        padding: 0.875rem;
        font-size: 1rem;
        border-radius: 8px;
    }

    textarea {
        min-height: 120px;
    }

    .form-actions {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .btn-submit {
        width: 100%;
        padding: 1rem;
        font-size: 1.05rem;
    }

    /* Testimonials on mobile */
    .testimonials {
        padding: 3rem 0;
    }

    .testimonials h2 {
        font-size: 2rem;
        padding: 0 1.25rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1.25rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    /* Pricing on mobile */
    .pricing {
        padding: 2rem 0;
    }

    .pricing h2 {
        font-size: 1.5rem;
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }

    .pricing-container {
        flex-direction: column;
        padding: 0 0.75rem;
    }

    .pricing-period-selector {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
        gap: 0.5rem;
    }

    .period-btn {
        flex: 1;
        max-width: 100px;
        padding: 0.5rem 0.4rem;
    }

    .period-label {
        font-size: 1rem;
    }

    .period-text {
        font-size: 0.65rem;
    }

    .pricing-grid {
        display: flex !important;
        flex-direction: row !important;
        gap: 0.5rem;
        margin-left: 0;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }

    .price-plan-1,
    .price-plan-2,
    .price-plan-3,
    .price-plan-4,
    .price-plan-5 {
        flex: 1 1 32%;
        min-width: 105px;
        max-width: 120px;
        padding: 0.75rem 0.5rem 1rem 0.5rem;
        min-height: 250px;
        overflow: visible;
        display: flex;
        flex-direction: column;
    }

    .plan-top h3 {
        font-size: 0.85rem;
        margin-bottom: 0.15rem;
    }

    .plan-cost {
        font-size: 0.85rem !important;
        margin: 0.15rem 0 !important;
        line-height: 1 !important;
    }

    .plan-info-1,
    .plan-info-2,
    .plan-info-3,
    .plan-info-4,
    .plan-info-5 {
        margin-top: auto;
        padding-top: 0.5rem;
    }

    .plan-badge {
        font-size: 0.55rem;
        padding: 0.15rem 0.35rem;
        top: 0.3rem;
        right: 0.3rem;
    }

    /* Make pricing buttons more compact on mobile */
    .price-plan-1 .btn,
    .price-plan-2 .btn,
    .price-plan-3 .btn,
    .price-plan-4 .btn,
    .price-plan-5 .btn {
        padding: 0.5rem 0.6rem;
        font-size: 0.65rem;
        width: 100%;
        white-space: nowrap;
    }

    /* Reduce list font sizes in pricing */
    .price-plan-1 ul,
    .price-plan-2 ul,
    .price-plan-3 ul,
    .price-plan-4 ul,
    .price-plan-5 ul {
        font-size: 0.8rem;
        line-height: 1.2;
        margin-bottom: 0.3rem;
    }

    .price-plan-1 ul li,
    .price-plan-2 ul li,
    .price-plan-3 ul li,
    .price-plan-4 ul li,
    .price-plan-5 ul li {
        margin-bottom: 0.2rem;
    }

    /* FAQ on mobile */
    .faq {
        padding: 3rem 0;
    }

    .faq h2 {
        font-size: 2rem;
        padding: 0 1.25rem;
    }

    .faq-grid {
        padding: 0 1.25rem;
    }

    .faq-item {
        padding: 1.25rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.05rem;
    }

    /* Process Timeline on mobile */
    .process-timeline {
        padding: 3rem 0;
    }

    .process-timeline h2 {
        font-size: 2rem;
        padding: 0 1.25rem;
        margin-bottom: 3rem;
    }

    .timeline-grid {
        grid-template-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    /* Remove all connecting elements on mobile */
    .timeline-grid::before,
    .timeline-grid::after,
    .process-timeline::after,
    .step-box-1::before,
    .step-box-2::before,
    .step-box-3::before,
    .step-box-4::before,
    .step-box-1::after,
    .step-box-2::after,
    .step-box-3::after,
    .step-box-4::after {
        display: none;
    }

    .step-box-1,
    .step-box-2,
    .step-box-3,
    .step-box-4 {
        padding: 1.5rem;
        border-radius: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        background: white;
        border: 1px solid rgba(249, 115, 22, 0.15);
        min-height: auto;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        border-radius: 10px;
        margin-right: 0.75rem;
        background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        box-shadow: 0 2px 6px rgba(249, 115, 22, 0.2);
    }

    .step-header {
        display: flex;
        align-items: center;
        margin-bottom: 0.5rem;
    }

    .step-header h3 {
        font-size: 1.1rem;
        margin: 0;
    }

    .step-summary {
        font-size: 0.9rem;
        margin-bottom: 0;
        line-height: 1.5;
        color: var(--text-muted);
    }

    .step-info-1 p,
    .step-info-2 p,
    .step-info-3 p,
    .step-info-4 p {
        font-size: 0.9rem;
    }

    /* Footer */
    footer {
        padding: 2.5rem 1.25rem 2rem;
        font-size: 0.9rem;
    }

    footer p {
        margin: 0.5rem 0;
        line-height: 1.6;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero,
.services,
.order {
    animation: fadeIn 0.6s ease-out;
}

/* Accessibility */
/* Animations are now always enabled - removed prefers-reduced-motion media query
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
*/

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Footer Styling */
footer {
    margin-top: 4rem;
    padding: 3rem 0 2rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
}

footer p {
    margin: 0.5rem 0;
    color: var(--text-color);
}

footer a {
    color: #ea580c;
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #c2410c;
    text-decoration: underline;
}

footer small {
    color: var(--light-text);
    font-size: 0.875rem;
}

.footer-address {
    font-size: 0.95rem;
    margin-top: 0.5rem;
    color: var(--light-text);
}

.visit-counter {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.visit-counter #visitCount {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 50px;
    display: inline-block;
}

/* ============================================
   GDPR Cookie Banner
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideUp 0.5s ease-out;
}

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

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
}

.cookie-text p {
    font-size: 0.95rem;
    color: var(--light-text);
    margin: 0;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-accept {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c2410c 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(234, 88, 12, 0.4);
}

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

.btn-decline:hover {
    background: var(--light-background);
    border-color: var(--primary-color);
}

/* Mobile responsiveness for cookie banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-buttons button {
        flex: 1;
        min-width: 120px;
    }
}

/* ============================================
   Floating Particles Animation
   ============================================ */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.particle:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-duration: 25s;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 30%;
    animation-duration: 20s;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    width: 100px;
    height: 100px;
    left: 50%;
    animation-duration: 30s;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    width: 40px;
    height: 40px;
    left: 70%;
    animation-duration: 18s;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    width: 70px;
    height: 70px;
    left: 90%;
    animation-duration: 22s;
    animation-delay: 8s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    50% {
        transform: translateY(-10vh) translateX(50px) rotate(180deg);
        opacity: 0.8;
    }
}

/* ============================================
   Section Entrance Animations
   ============================================ */
main>section,
section:not(header):not(.site-header) {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    position: relative;
    z-index: 1;
}

main>section:nth-child(1),
section:not(header):not(.site-header):nth-child(1) {
    animation-delay: 0.1s;
}

main>section:nth-child(2),
section:not(header):not(.site-header):nth-child(2) {
    animation-delay: 0.2s;
}

main>section:nth-child(3),
section:not(header):not(.site-header):nth-child(3) {
    animation-delay: 0.3s;
}

main>section:nth-child(4),
section:not(header):not(.site-header):nth-child(4) {
    animation-delay: 0.4s;
}

main>section:nth-child(5),
section:not(header):not(.site-header):nth-child(5) {
    animation-delay: 0.5s;
}

main>section:nth-child(6),
section:not(header):not(.site-header):nth-child(6) {
    animation-delay: 0.6s;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Card Hover Effects
   ============================================ */
.service-card,
.review-box-1,
.review-box-2,
.review-box-3,
.price-plan-1,
.price-plan-2,
.price-plan-3,
.question-box-1,
.question-box-2,
.question-box-3,
.question-box-4,
.question-box-5 {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card::before,
.review-box-1::before,
.review-box-2::before,
.review-box-3::before,
.price-plan-1::before,
.price-plan-2::before,
.price-plan-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.service-card:hover::before,
.review-box-1:hover::before,
.review-box-2:hover::before,
.review-box-3:hover::before,
.price-plan-1:hover::before,
.price-plan-2:hover::before,
.price-plan-3:hover::before {
    left: 100%;
}

/* ============================================
   Button Ripple Effect
   ============================================ */
.btn,
.testimonials-toggle-btn,
.pricing-toggle-btn,
.faq-toggle-btn {
    position: relative;
    overflow: hidden;
}

.btn::after,
.testimonials-toggle-btn::after,
.pricing-toggle-btn::after,
.faq-toggle-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after,
.testimonials-toggle-btn:active::after,
.pricing-toggle-btn:active::after,
.faq-toggle-btn:active::after {
    width: 300px;
    height: 300px;
}

/* ============================================
   Glow Effects
   ============================================ */
.hero {
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
    animation: glow 3s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes glow {
    from {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* ============================================
   Shimmer Text Effect
   ============================================ */
.hero h1,
.hero .lead {
    background: linear-gradient(90deg, var(--text-color) 0%, #f97316 50%, var(--text-color) 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

/* ============================================
   Brand Story Section (Daňový dobrman)
   ============================================ */
.brand-story {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.brand-story-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.brand-story-content-side {
    flex: 1;
}

.brand-story h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.brand-story h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.brand-story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.brand-story-details {
    background: rgba(255, 255, 255, 0.6);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
}

.brand-story-highlight {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
    margin: 2rem 0;
}

.brand-story-tagline {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 2rem;
}

.brand-story-slideshow {
    flex: 1;
    position: relative;
}

.dog-slideshow-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.dog-slideshow-container:hover {
    transform: rotate(0deg);
}

.dog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .brand-story-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .brand-story h2 {
        font-size: 2rem;
        text-align: center;
        display: block;
    }

    .brand-story h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .dog-slideshow-container {
        height: 350px;
        transform: rotate(0deg);
    }

    .brand-story-details {
        padding: 1.5rem;
    }
}

/* Slideshow Content & Dots */
.slideshow-content-bottom {
    margin-top: 2rem;
    text-align: center;
}

.slideshow-container {
    position: relative;
    min-height: 150px;
    margin-bottom: 1.5rem;
}

.slide {
    display: none;
    animation: fadeEffect 1s;
}

.slide.active {
    display: block;
}

.dog-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.dog-slide.active {
    display: block;
    animation: fadeEffect 1s;
}

@keyframes fadeEffect {
    from {
        opacity: 0.4
    }

    to {
        opacity: 1
    }
}

.slide-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.slide-content p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 400px;
    margin: 0 auto;
}

.slide-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #e5e7eb;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* Pricing Scroll Arrows */
.pricing-scroll-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pricing-grid {
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    padding-bottom: 1rem;
    /* Space for shadows */
}

.pricing-grid::-webkit-scrollbar {
    display: none;
}

.scroll-arrow {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
    color: var(--primary-color);
}

.scroll-arrow:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.scroll-arrow:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .scroll-arrow {
        display: none;
        /* Optional: hide arrows on mobile if touch scroll is preferred, or keep them */
    }
}