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

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

:root {
    --primary-blue: #1E3A5F;
    --beige-bg: #F5F0E8;
    --beige-light: #E8E0D6;
    --dark-brown: #5A4A3A;
    --white: #FFFFFF;
    --text-dark: #2C2C2C;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

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

/* Discount Banner */
.discount-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a4d7a 100%);
    color: var(--white);
    padding: 12px 0;
    text-align: center;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.discount-banner.hidden {
    display: none;
}

.discount-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: relative;
}

.discount-banner-text {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.discount-banner-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    opacity: 0.9;
    position: absolute;
    right: 20px;
}

.discount-banner-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.discount-banner-close:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .discount-banner {
        padding: 10px 0;
    }
    
    .discount-banner-text {
        font-size: 13px;
        padding-right: 30px;
    }
    
    .discount-banner-close {
        right: 15px;
        font-size: 24px;
    }
}

/* Top Bar */
.top-bar {
    background-color: var(--beige-bg);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-brown);
}

.location-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-icon {
    width: 16px;
    height: 16px;
    color: var(--dark-brown);
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-number a,
.email-address a {
    color: var(--dark-brown);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.phone-number a:hover,
.email-address a:hover {
    opacity: 0.7;
}

/* Main Header */
.main-header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    object-fit: contain;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-right: 30px;
    margin-left: auto;
}

.nav-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    opacity: 0.7;
}

.btn-contact-header {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s, transform 0.1s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.btn-contact-header:hover {
    background-color: #152A47;
    transform: translateY(-1px);
    color: var(--white);
}

.btn-contact-header:active {
    transform: translateY(0);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
}

.hero-headline {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.btn-register-dog {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 20px 50px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    margin-top: 10px;
    display: inline-block;
    text-decoration: none;
}

.btn-register-dog:hover {
    background-color: #152A47;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

    .btn-register-dog:active {
        transform: translateY(0) scale(1);
    }

    /* All-Inclusive Package Section */
    .package-offer-section {
        padding: 80px 0;
        background-color: var(--white);
    }

    .package-offer-title {
        text-align: center;
        color: var(--primary-blue);
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 30px;
        letter-spacing: -0.5px;
    }

    .package-offer-content {
        max-width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .package-features {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .package-feature-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
    }

    .package-feature-check {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        background-color: var(--primary-blue);
        color: var(--white);
        border-radius: 50%;
        font-size: 16px;
        font-weight: 700;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .package-feature-text {
        font-size: 18px;
        color: var(--text-dark);
        line-height: 1.6;
        font-weight: 500;
    }

    .package-feature-value {
        color: #6B7280;
        font-weight: 400;
        font-size: 16px;
    }

    .package-pricing {
        background: linear-gradient(135deg, var(--primary-blue) 0%, #2a4a7a 100%);
        border-radius: 16px;
        padding: 40px;
        text-align: center;
        box-shadow: 0 8px 30px rgba(30, 58, 95, 0.2);
    }

    .package-total-value {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 16px;
    }

    .package-total-amount {
        font-weight: 600;
        text-decoration: line-through;
        opacity: 0.8;
    }

    .package-price {
        font-size: 64px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 24px;
        line-height: 1;
    }

    .btn-package-cta {
        display: inline-block;
        background-color: var(--white);
        color: var(--primary-blue);
        padding: 16px 40px;
        font-size: 18px;
        font-weight: 700;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.3s ease;
        letter-spacing: 0.5px;
    }

    .btn-package-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
        background-color: #f8f9fa;
    }

    @media (max-width: 968px) {
        .package-offer-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .package-pricing {
            order: -1;
        }
    }

    @media (max-width: 768px) {
        .package-offer-section {
            padding: 60px 0;
        }

        .package-offer-title {
            font-size: 32px;
            margin-bottom: 30px;
        }

        .package-beach-image-container {
            margin-bottom: 30px;
        }

        .package-beach-image {
            border-radius: 12px;
        }

        .package-feature-text {
            font-size: 16px;
        }

        .package-feature-value {
            font-size: 14px;
        }

        .package-pricing {
            padding: 30px 24px;
        }

        .package-price {
            font-size: 48px;
        }

        .btn-package-cta {
            padding: 14px 32px;
            font-size: 16px;
        }
    }

    /* Testimonials Section */
    .testimonials-section {
        height: auto;
        min-height: 400px;
        padding: 40px 0;
        background-color: var(--beige-bg);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .testimonials-section .container {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 20px 0;
        max-width: 100%;
        width: 100%;
    }

    .testimonials-title {
        text-align: center;
        color: var(--primary-blue);
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
        flex-shrink: 0;
        padding: 0 20px;
    }

    .testimonials-container {
        position: relative;
        overflow: hidden;
        padding: 0;
        cursor: grab;
        flex: 1;
        display: flex;
        align-items: center;
        width: 100%;
    }

    .testimonials-container:active {
        cursor: grabbing;
    }

    .testimonials-track {
        display: flex;
        gap: 30px;
        will-change: transform;
    }

    .testimonial-item {
        flex: 0 0 320px;
        min-width: 320px;
    }

    .testimonial-content {
        background-color: var(--white);
        padding: 24px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        height: auto;
        display: flex;
        flex-direction: column;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .testimonial-content:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .testimonial-stars {
        font-size: 18px;
        color: #FBBF24;
        margin-bottom: 12px;
        letter-spacing: 2px;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 1.6;
        color: var(--text-dark);
        margin-bottom: 12px;
        flex: 0;
    }

    .testimonial-author {
        font-size: 14px;
        font-weight: 600;
        color: var(--primary-blue);
        margin: 0 0 4px 0;
        text-align: right;
    }

    .testimonial-location {
        font-size: 12px;
        color: #6B7280;
        margin: 0;
        text-align: right;
        font-weight: 400;
    }

    /* Responsive Design */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 48px;
    }

    .main-nav {
        gap: 20px;
    }

    .nav-link {
        font-size: 13px;
    }
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

@media (max-width: 768px) {
    .header-content {
        flex-wrap: nowrap;
        gap: 15px;
    }

    .hamburger-menu {
        display: flex;
    }

    .btn-contact-header {
        display: none;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 20px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        order: unset;
        justify-content: flex-start;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }

    .main-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid var(--beige-light);
        font-size: 16px;
    }

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

    .hero-content {
        padding: 0 20px;
        gap: 30px;
    }

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

    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .top-bar-contact {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 16px;
    }

    .hero-headline {
        font-size: 28px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .btn-register-dog {
        padding: 16px 35px;
        font-size: 16px;
    }

    .testimonials-section {
        height: auto;
        min-height: 350px;
        padding: 30px 0;
    }

    .testimonials-section .container {
        padding: 15px 0;
    }

    .testimonials-title {
        font-size: 28px;
        margin-bottom: 20px;
        padding: 0 20px;
    }

    .testimonial-item {
        flex: 0 0 280px;
        min-width: 280px;
    }

    .testimonial-content {
        padding: 20px;
    }

    .testimonial-stars {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .testimonial-text {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .testimonial-location {
        font-size: 11px;
    }
}

/* Contact Form Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    font-weight: 300;
    color: var(--text-dark);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--primary-blue);
}

.modal-content h2 {
    color: var(--primary-blue);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 0;
}

.modal-subtitle {
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.8;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 16px;
    font-family: inherit;
    border: 2px solid var(--beige-light);
    border-radius: 6px;
    background-color: var(--white);
    color: var(--text-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231E3A5F' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-group select option {
    padding: 8px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-message {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Success Screen */
.success-screen {
    padding: 40px 20px;
    animation: fadeIn 0.5s ease-out;
}

.success-content {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.success-icon {
    flex-shrink: 0;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-text {
    flex: 1;
    min-width: 200px;
}

.success-screen h2 {
    color: var(--primary-blue);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.success-message {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.success-submessage {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.success-action {
    flex-shrink: 0;
}

.success-image {
    width: 100%;
    margin-top: 30px;
    text-align: center;
}

.success-beach-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.btn-close-success {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.3px;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
}

.btn-close-success:hover {
    background-color: #152A47;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.btn-submit {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.2s, transform 0.1s;
    text-transform: uppercase;
    margin-top: 4px;
    box-sizing: border-box;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-left: 0;
    margin-right: 0;
    vertical-align: top;
}

.btn-submit:hover:not(:disabled) {
    background-color: #152A47;
    transform: translateY(-1px);
}

.btn-submit:active:not(:disabled) {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Multi-step Form Styles with Dog Walking Animation */
.form-progress {
    margin-bottom: 40px;
    padding: 0 10px;
}

.progress-track {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
}

.progress-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-blue) 0%, var(--primary-blue) 0%, var(--beige-light) 0%);
    background-size: 100% 100%;
    transform: translateY(-50%);
    border-radius: 2px;
    transition: background 0.5s ease;
}

.dog-walker {
    position: absolute;
    top: calc(50% + 20px);
    left: 0;
    transform: translate(-50%, -100%);
    z-index: 10;
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: dogWalk 0.8s ease-in-out infinite;
    transform-origin: center bottom;
}

.dog-walker.step-1 { left: 0%; }
.dog-walker.step-2 { left: 50%; }
.dog-walker.step-3 { left: 100%; }

.dog-icon {
    width: 120px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
    display: block;
}

@keyframes dogWalk {
    0%, 100% {
        transform: translate(-50%, -100%) rotate(0deg) translateY(0);
    }
    25% {
        transform: translate(-50%, calc(-100% - 2px)) rotate(-2deg) translateY(-2px);
    }
    50% {
        transform: translate(-50%, -100%) rotate(0deg) translateY(-3px);
    }
    75% {
        transform: translate(-50%, calc(-100% + 2px)) rotate(2deg) translateY(-2px);
    }
}

.progress-milestones {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
    z-index: 5;
}

.milestone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    position: relative;
}

.milestone-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--beige-light);
    border: 2px solid var(--beige-light);
    transition: all 0.3s ease;
    margin-top: 34px;
}

.milestone.active .milestone-dot {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.1);
    transform: scale(1.2);
}

.milestone-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-dark);
    opacity: 0.5;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 4px;
}

.milestone.active .milestone-label {
    opacity: 1;
    color: var(--primary-blue);
    font-weight: 600;
}

/* Update progress track background based on step */
.progress-track.step-1::before {
    background: linear-gradient(to right, var(--primary-blue) 0%, var(--beige-light) 0%);
}

.progress-track.step-2::before {
    background: linear-gradient(to right, var(--primary-blue) 50%, var(--beige-light) 50%);
}

.progress-track.step-3::before {
    background: linear-gradient(to right, var(--primary-blue) 100%, var(--primary-blue) 100%);
}

.form-step {
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--beige-light);
}

.btn-next,
.btn-back {
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    letter-spacing: 0.3px;
    box-sizing: border-box;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin: 0;
    vertical-align: top;
}

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

.btn-next:hover:not(:disabled) {
    background-color: #152A47;
    transform: translateY(-1px);
}

.btn-back {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--beige-light);
    padding: 14px 24px;
    height: 48px;
    box-sizing: border-box;
    margin-top: 2px;
}

.btn-back:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.form-group input.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* File Input Styles */
.form-group input[type="file"] {
    padding: 10px 12px;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid var(--beige-light);
    border-radius: 6px;
    background-color: var(--white);
    color: var(--text-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}

.form-group input[type="file"]:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-group input[type="file"]:hover {
    border-color: var(--primary-blue);
}

.file-input-hint {
    font-size: 12px;
    color: #6c757d;
    margin-top: 6px;
    margin-bottom: 0;
}

/* Vaccination Accordion */
.vaccination-accordion {
    background-color: var(--white);
    border: 2px solid var(--beige-light);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.vaccination-accordion.active {
    border-color: var(--primary-blue);
}

.vaccination-accordion-header {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-family: inherit;
    font-weight: 600;
    border: none;
    background-color: transparent;
    color: var(--text-dark);
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.vaccination-accordion-header:hover {
    opacity: 0.8;
}

.vaccination-accordion-header:focus {
    outline: none;
    opacity: 0.8;
}

.vaccination-accordion-title {
    flex: 1;
    color: var(--primary-blue);
}

.vaccination-accordion-icon {
    position: relative;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 12px;
}

.vaccination-accordion-plus,
.vaccination-accordion-minus {
    position: absolute;
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.vaccination-accordion-plus {
    opacity: 1;
    transform: scale(1);
}

.vaccination-accordion-minus {
    opacity: 0;
    transform: scale(0);
}

.vaccination-accordion.active .vaccination-accordion-plus {
    opacity: 0;
    transform: scale(0);
}

.vaccination-accordion.active .vaccination-accordion-minus {
    opacity: 1;
    transform: scale(1);
}

.vaccination-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.vaccination-accordion.active .vaccination-accordion-content {
    max-height: 1000px;
    padding: 20px;
}

/* Vaccination Cards */
.vaccination-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 0;
}

.vaccination-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background-color: var(--white);
    border: 2px solid var(--beige-light);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
}

.vaccination-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.1);
    transform: translateY(-1px);
}

.vaccination-item.has-file {
    border-color: var(--primary-blue);
    background-color: rgba(30, 58, 95, 0.02);
}

.vaccination-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beige-bg);
    border-radius: 6px;
    flex-shrink: 0;
    color: var(--text-dark);
}

.vaccination-item.has-file .vaccination-icon {
    background-color: var(--primary-blue);
    color: var(--white);
}

.vaccination-plus {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    flex-shrink: 0;
}

.vaccination-item.has-file .vaccination-plus {
    display: none;
}

.vaccination-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
}

.vaccination-file-name {
    font-size: 14px;
    color: var(--primary-blue);
    font-weight: 500;
    margin-left: auto;
    display: none;
}

.vaccination-item.has-file .vaccination-file-name {
    display: block;
}

@media (max-width: 768px) {
    .vaccination-accordion-header {
        padding: 14px 16px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .vaccination-accordion.active .vaccination-accordion-content {
        padding: 16px;
    }
    
    .vaccination-item {
        padding: 14px 16px;
        gap: 10px;
    }
    
    .vaccination-icon {
        width: 36px;
        height: 36px;
    }
    
    .vaccination-name {
        font-size: 15px;
    }
    
    .vaccination-file-name {
        font-size: 13px;
    }
}

/* SMS Opt-in Checkbox */
.sms-opt-in {
    background-color: var(--white);
    border: 2px solid var(--beige-light);
    border-radius: 8px;
    padding: 20px;
    margin-top: 8px;
}

.sms-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 12px;
}

.sms-checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--primary-blue);
}

.sms-checkbox-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
    flex: 1;
}

.sms-disclaimer {
    font-size: 11px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    padding-left: 32px;
}

.sms-disclaimer strong {
    color: var(--text-dark);
    font-weight: 600;
}

.sms-policy-link {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.2s;
}

.sms-policy-link:hover {
    opacity: 0.7;
}

.sms-checkbox-label.error {
    color: #dc3545;
}

.sms-checkbox-label.error .sms-checkbox-text {
    color: #dc3545;
}

.sms-checkbox-label.error input[type="checkbox"] {
    border-color: #dc3545;
    outline: 2px solid rgba(220, 53, 69, 0.2);
    outline-offset: 2px;
}

.sms-opt-in.error {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.05);
}

/* Breed Searchable Dropdown */
.breed-dropdown {
    position: relative;
}

.breed-search {
    width: 100%;
    padding-right: 40px;
    cursor: text;
}

.breed-search.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.breed-dropdown-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-dark);
    font-size: 12px;
    opacity: 0.5;
    transition: transform 0.2s, opacity 0.2s;
}

.breed-search:focus ~ .breed-dropdown-arrow {
    opacity: 1;
    transform: translateY(-50%) rotate(180deg);
}

.breed-dropdown-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background-color: var(--white);
    border: 2px solid var(--beige-light);
    border-radius: 6px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.breed-dropdown-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.15s;
    border-bottom: 1px solid var(--beige-light);
    font-size: 16px;
    color: var(--text-dark);
}

.breed-dropdown-item:last-child {
    border-bottom: none;
}

.breed-dropdown-item:hover,
.breed-dropdown-item.highlighted {
    background-color: rgba(30, 58, 95, 0.1);
    color: var(--primary-blue);
}

.breed-dropdown-item.no-results {
    color: #6c757d;
    cursor: default;
    font-style: italic;
}

.breed-dropdown-item.no-results:hover {
    background-color: transparent;
}

/* Mobile optimizations for breed dropdown */
@media (max-width: 768px) {
    .breed-dropdown-list {
        max-height: 250px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .breed-dropdown-item {
        padding: 14px 16px; /* Larger touch target */
    }
}


/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
    }

    .modal-content h2 {
        font-size: 24px;
    }

    .modal-subtitle {
        font-size: 14px;
    }

    .form-progress {
        padding: 0 5px;
        margin-bottom: 30px;
    }
    
    .progress-track {
        height: 70px;
    }
    
    .dog-icon {
        width: 90px;
        height: auto;
    }
    
    .milestone-dot {
        width: 10px;
        height: 10px;
        margin-top: 30px;
    }
    
    .milestone-label {
        font-size: 9px;
    }

    .form-actions {
        flex-direction: column-reverse;
    }

    .btn-next,
    .btn-back {
        width: 100%;
    }

    .sms-opt-in {
        padding: 16px;
    }

    .sms-checkbox-label {
        gap: 10px;
    }

    .sms-checkbox-text {
        font-size: 14px;
    }

    .sms-disclaimer {
        font-size: 11px;
        padding-left: 30px;
    }
}

/* Register Page Styles */
.register-page {
    min-height: 100vh;
    padding: 20px 0;
    background-color: var(--beige-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-page .container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.register-content {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.register-content h1 {
    color: var(--primary-blue);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .register-page {
        min-height: 100vh;
        padding: 20px 0;
    }

    .register-content {
        padding: 30px 20px;
        margin: 0 20px;
    }

    .register-content h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .success-content {
        flex-direction: column;
        text-align: center;
    }

    .success-text {
        min-width: auto;
    }

    .success-action {
        width: 100%;
    }

    .btn-close-success {
        width: 100%;
    }

    .success-image {
        margin-top: 20px;
    }

    .success-beach-image {
        border-radius: 8px;
    }
}

/* Meet the Owners Page */
.meet-owners-page {
    min-height: calc(100vh - 200px);
    padding: 80px 0;
    background-color: var(--beige-bg);
}

.meet-owners-title {
    color: var(--primary-blue);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -0.5px;
}

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

.owner-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.owner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.owner-image-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.owner-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.owner-name {
    color: var(--primary-blue);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.owner-bio {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    opacity: 0.9;
}

/* FAQ Page */
.faq-page {
    min-height: calc(100vh - 200px);
    padding: 60px 0;
    background-color: var(--beige-bg);
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-title {
    color: var(--primary-blue);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.5px;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    color: var(--primary-blue);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

.faq-item {
    margin-bottom: 16px;
    background-color: var(--beige-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item.active {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-question:hover {
    background-color: rgba(30, 58, 95, 0.05);
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 16px;
}

.faq-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
    font-size: 14px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px 24px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
    padding-top: 12px;
}

.faq-answer ul {
    margin: 12px 0 0 0;
    padding-left: 20px;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer li:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--primary-blue);
    font-weight: 600;
}

@media (max-width: 768px) {
    .meet-owners-page {
        padding: 60px 0;
    }

    .meet-owners-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .owners-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .owner-card {
        padding: 30px 24px;
    }

    .owner-image-container {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 24px;
    }

    .owner-image {
        height: 200px;
    }

    .owner-name {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .owner-bio {
        font-size: 15px;
    }

    .faq-page {
        padding: 40px 0;
    }

    .faq-content {
        padding: 30px 20px;
        margin: 0 20px;
    }

    .faq-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .faq-category-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 15px;
    }

    .faq-answer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .faq-item.active .faq-answer {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 16px;
    }

    .faq-answer p,
    .faq-answer ul {
        font-size: 14px;
    }
}

/* Footer Styles */
.main-footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-logo-section {
    display: flex;
    align-items: flex-start;
}

.footer-logo-container {
    background-color: var(--beige-bg);
    border-radius: 0 0 12px 12px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 180px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-logo-text {
    text-align: center;
}

.footer-logo-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.footer-logo-tagline {
    font-size: 11px;
    font-weight: 400;
    color: var(--primary-blue);
    letter-spacing: 0.3px;
    opacity: 0.8;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-nav-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: uppercase;
}

.footer-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-links li {
    margin: 0;
}

.footer-nav-links a {
    font-size: 14px;
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s;
    font-weight: 400;
}

.footer-nav-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-end;
}

.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: opacity 0.2s;
}

.social-icon:hover {
    opacity: 0.7;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.footer-address {
    text-align: right;
}

.footer-contact-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    margin: 0 0 12px 0;
    text-transform: uppercase;
}

.footer-address-text {
    font-size: 14px;
    color: var(--white);
    opacity: 0.85;
    line-height: 1.6;
    margin: 0 0 8px 0;
}

.footer-phone {
    margin: 0;
}

.footer-phone a {
    font-size: 14px;
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s;
    font-weight: 400;
}

.footer-phone a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    background-color: var(--beige-bg);
    padding: 16px 0;
    border-top: 1px solid rgba(30, 58, 95, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-dark);
    margin: 0;
    opacity: 0.7;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--text-dark);
    text-decoration: underline;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.footer-bottom-links a:hover {
    opacity: 1;
}

.footer-link-separator {
    font-size: 13px;
    color: var(--text-dark);
    opacity: 0.5;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 40px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 30px;
    }

    .footer-logo-container {
        align-self: flex-start;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-contact {
        align-items: flex-start;
    }

    .footer-address {
        text-align: left;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Contact Page Styles */
.contact-page {
    min-height: calc(100vh - 200px);
    padding: 60px 0;
    background-color: var(--beige-bg);
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-title {
    color: var(--primary-blue);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.contact-intro {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.8;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 120px;
    justify-content: center;
}

.contact-btn span:first-of-type {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.contact-btn-detail {
    font-size: 16px;
    color: var(--white);
    opacity: 0.9;
    font-weight: 400;
}

.contact-btn-email {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a4a7a 100%);
    color: var(--white);
}

.contact-btn-email:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.4);
    border-color: var(--primary-blue);
}


.contact-btn-phone {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: var(--white);
}

.contact-btn-phone:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    border-color: #10B981;
}


@media (max-width: 768px) {
    .contact-page {
        padding: 40px 0;
    }

    .contact-content {
        padding: 30px 20px;
        margin: 0 20px;
    }

    .contact-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .contact-intro {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .contact-buttons {
        gap: 16px;
    }

    .contact-btn {
        padding: 24px 20px;
    }

    .contact-btn span:first-of-type {
        font-size: 18px;
    }

    .contact-btn-detail {
        font-size: 14px;
    }
}

/* Services Page Styles */
.services-page {
    min-height: calc(100vh - 200px);
    padding: 60px 0;
    background-color: var(--beige-bg);
}

.services-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.services-title {
    color: var(--primary-blue);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: -0.5px;
}

.services-intro {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 50px;
    text-align: center;
    opacity: 0.8;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

.service-item {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--beige-light);
}

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

.service-item-title {
    color: var(--primary-blue);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.service-item-description {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-item-detail {
    background-color: var(--beige-bg);
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-top: 16px;
}

.service-item-detail strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.treats-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.treats-list li {
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
    min-height: 1.6em;
}

.treats-list li:before {
    content: "•";
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
    line-height: 1.6;
    top: 0;
    width: 20px;
    text-align: center;
}

.treats-list a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.treats-list a:hover {
    color: #2a4d7a;
    text-decoration: underline;
}

.service-item-note {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-dark);
    font-style: italic;
    opacity: 0.85;
}

.report-card-image {
    margin-top: 20px;
    text-align: center;
}

.report-card-example {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .report-card-example {
        border-radius: 8px;
    }
}

.services-cta {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--beige-light);
}

@media (max-width: 768px) {
    .services-page {
        padding: 40px 0;
    }

    .services-content {
        padding: 30px 20px;
        margin: 0 20px;
    }

    .services-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .services-intro {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .services-list {
        gap: 30px;
        margin-bottom: 40px;
    }

    .service-item {
        padding-bottom: 30px;
    }

    .service-item-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .service-item-description {
        font-size: 15px;
    }

    .service-item-detail {
        font-size: 14px;
        padding: 14px 16px;
    }
}

