/* 
 * ========================================
 * FORMS DISABLED - RESTORATION INSTRUCTIONS
 * ========================================
 * 
 * To re-enable email forms:
 * 1. Remove the .forms-disabled CSS rule below (lines ~15-17)
 * 2. In index.html: Remove all "forms-disabled" classes from elements
 * 3. In index.html: Change phone link buttons back to original form buttons
 * 4. In script.js: Uncomment the "FORM HANDLING" section (currently disabled)
 * 
 * All form code is preserved and ready to restore!
 * ========================================
 */

/* Hide all forms while preserving code for easy restoration */
.forms-disabled {
    display: none !important;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
}

header {
    background-color: #001f3f;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

.nav-brand-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-brand-row.visible {
    opacity: 1;
}

.nav-logo-mini {
    height: 35px;
    width: 60px;
    object-fit: cover;
    object-position: top center;
    margin-right: -1rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #f5f5f7;
    font-weight: 400;
    font-size: 0.9rem;
    transition: opacity 0.3s;
    display: block;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-brand-name {
    font-weight: 900;
    color: white;
    text-decoration: none;
}

.nav-motto {
    background: linear-gradient(90deg, #f5f5f7 25%, #fff 50%, #FFD700 75%, #f5f5f7 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
    animation: sparkle 3s linear infinite;
}

.nav-motto.visible {
    opacity: 1;
}

.heart-glow {
    -webkit-text-fill-color: red;
    color: red;
    animation: heartGlow 2s ease-in-out infinite;
}

.hero {
    background: #87CEEB url('IMG_2523_1759834947799.jpg') center/cover no-repeat;
    color: #1a1a1a;
    padding: 8rem 5%;
    text-align: left;
    position: relative;
    z-index: 100;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.25);
    z-index: 0;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-headline {
    display: flex;
    align-items: flex-end;
    gap: 3rem;
}

.hero-logo {
    height: 312px;
    width: auto;
    flex-shrink: 0;
    margin-bottom: -55px;
    transform: translateY(10px);
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: calc(1.5rem - 10px);
}

.hero-copy h1 {
    font-size: 4rem;
    margin-bottom: 0;
    font-weight: 900;
    line-height: 1.1;
}

.hero-copy p {
    font-size: 1.3rem;
    margin-bottom: 0;
    font-weight: 500;
    margin-top: -5px;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.25));
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 2.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background-color: #3498DB;
    color: white;
    padding: 1.2rem 2.8rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.2s;
    border: 5px solid #1a1a1a;
    cursor: pointer;
}

button.cta-button {
    appearance: none;
    -webkit-appearance: none;
    border: 5px solid #1a1a1a;
    padding: 1.2rem 2.8rem;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.callback-button {
    background-color: #27AE60;
    position: relative;
}

.callback-button:hover {
    background-color: #229954;
}

.services {
    padding: 5rem 0;
    background: #87CEEB url('IMG_2520_1759834947799.jpg') center/cover no-repeat;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(135, 206, 250, 0.5);
    z-index: 0;
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 900;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    z-index: 1;
    cursor: grab;
}

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

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav:hover {
    background: rgba(0, 0, 0, 0.7);
}

.carousel-nav.prev {
    left: 1rem;
}

.carousel-nav.next {
    right: 1rem;
}

.service-carousel {
    display: flex;
    gap: 1.5rem;
    width: fit-content;
    -webkit-animation: scroll 40s linear infinite;
    animation: scroll 40s linear infinite;
    will-change: transform;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    padding: 0 1.5rem;
}

.service-carousel:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-100% / 4 - 0.375rem));
        transform: translateX(calc(-100% / 4 - 0.375rem));
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-100% / 4 - 0.375rem));
        transform: translateX(calc(-100% / 4 - 0.375rem));
    }
}

@-webkit-keyframes scrollReverse {
    0% {
        -webkit-transform: translateX(calc(-100% / 4 - 0.375rem));
        transform: translateX(calc(-100% / 4 - 0.375rem));
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes scrollReverse {
    0% {
        -webkit-transform: translateX(calc(-100% / 4 - 0.375rem));
        transform: translateX(calc(-100% / 4 - 0.375rem));
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 3px solid #1a1a1a;
    transition: transform 0.2s;
    min-width: 240px;
    width: 240px;
    flex-shrink: 0;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 800;
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
}

.service-brand {
    color: #1a1a1a;
    margin-bottom: 0.3rem;
    font-weight: 900;
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
}

.service-type {
    color: #666;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #666;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.price {
    font-size: 1.6rem;
    font-weight: 900;
    color: #1a1a1a !important;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.book-service-btn {
    background: #3498DB;
    color: white;
    padding: 0.7rem 1.3rem;
    border: 3px solid #1a1a1a;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
    margin-top: 0.5rem;
    position: relative;
    z-index: 2;
}

.book-service-btn:hover {
    transform: translateY(-2px);
}

.services-summary {
    background: linear-gradient(135deg, #00B4D8 0%, #0077B6 100%);
    padding: 2rem 5%;
    width: 100%;
}

.services-summary-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    cursor: pointer;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.summary-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.summary-icon {
    font-size: 1.5rem;
}

.summary-name {
    font-weight: 700;
    font-size: 1rem;
}

.summary-price {
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.95;
}

.about {
    background: #90EE90 url('IMG_2527_1759834947799.jpg') center/cover no-repeat;
    padding: 5rem 5%;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(144, 238, 144, 0.5);
    z-index: 0;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 900;
}

.about p {
    text-align: center;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 500;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.25));
}

.policies {
    padding: 5rem 5%;
    background: #E3F2FD;
}

.policies-content {
    max-width: 1000px;
    margin: 0 auto;
}

.policies-content h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 900;
}

.policy-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.policy-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.bullet {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    line-height: 1.2;
}

.policy-item p {
    margin: 0;
    font-size: 1.05rem;
    color: #1a1a1a;
    line-height: 1.6;
    font-weight: 500;
}

.contact {
    padding: 5rem 5%;
    background: #D6EAF8;
}

.contact > * {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 900;
}

.phone-highlight {
    text-align: center;
    margin: 2rem auto 3rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 3px solid #1a1a1a;
    max-width: 400px;
}

.phone-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.phone-reveal-btn {
    background: #3498DB;
    color: white;
    border: 3px solid #1a1a1a;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.phone-reveal-btn:hover {
    background: #2980B9;
    transform: translateY(-2px);
}

.reveal-desktop {
    display: inline;
}

.reveal-mobile {
    display: none;
}

@media (max-width: 768px) {
    .reveal-desktop {
        display: none;
    }
    
    .reveal-mobile {
        display: inline;
    }
}

.phone-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #3498DB;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-number:hover {
    color: #2980B9;
    transform: scale(1.05);
}

.contact-info {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin: 0.5rem 0;
    font-weight: 500;
}

.contact-info a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
}

.contact-info a:hover {
    opacity: 0.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 3px solid #1a1a1a;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: transform 0.2s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    transform: translateY(-2px);
}

.submit-button {
    background: #2980B9;
    color: white;
    padding: 1.2rem 2.5rem;
    border: 5px solid #1a1a1a;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}

.submit-button:hover {
    transform: translateY(-2px);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

footer {
    background-color: #1a1a1a;
    color: #E8F8F5;
    text-align: center;
    padding: 2rem;
    font-weight: 600;
}

.callback-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.callback-form-container {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 5px solid #1a1a1a;
    border-radius: 12px;
    padding: 1.5rem;
    width: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.callback-form-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.callback-form-container h3 {
    margin: 0 0 0.5rem 0;
    color: #1a1a1a;
    font-size: 1.3rem;
}

.callback-form-container p {
    margin: 0 0 1rem 0;
    color: #555;
    font-size: 0.9rem;
}

.close-callback {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    color: #1a1a1a;
    cursor: pointer;
    font-weight: bold;
    line-height: 1;
}

.close-callback:hover {
    color: #3498DB;
}

#callbackForm {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

#callbackForm input {
    width: 100%;
    padding: 0.8rem;
    border: 3px solid #1a1a1a;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
}

#callbackForm input:focus {
    outline: none;
    border-color: #3498DB;
}

#callbackForm .submit-button {
    margin-top: 0.5rem;
    padding: 0.8rem;
    font-size: 1rem;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 0.5rem 3%;
        gap: 0;
        align-items: center;
    }
    
    .nav-brand-row {
        display: none;
        align-items: center;
        gap: 0.5rem;
        justify-content: center;
        height: 2rem;
        padding: 0.3rem 0;
        transition: opacity 0.3s;
    }
    
    .nav-brand-row.visible {
        display: flex !important;
    }
    
    .nav-logo-mini {
        height: 30px;
        width: 50px;
    }
    
    .nav-brand-name {
        font-size: 1rem;
        font-weight: 900;
        color: white;
    }
    
    .nav-motto {
        display: none;
        font-size: 0.75rem;
        text-align: center;
        margin: 0;
        height: 1.8rem;
        align-items: center;
        justify-content: center;
        padding: 0.2rem 0;
        transition: opacity 0.3s;
    }
    
    .nav-motto.visible {
        display: flex !important;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
        justify-content: center;
        width: 100%;
        padding: 0.3rem 0;
        height: 2rem;
        display: flex;
        align-items: center;
    }
    
    .nav-links a {
        font-size: 0.85rem;
        padding: 0;
        display: flex;
        align-items: center;
    }
    
    .hero {
        padding: 4rem 5% 5rem;
    }
    
    .hero-headline {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero-logo {
        height: 300px;
        margin-bottom: 0;
        transform: none;
    }
    
    .hero-copy {
        align-items: center;
        text-align: center;
    }
    
    .hero-copy h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-copy p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        margin-top: 1.5rem;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 1rem;
    }
    
    .cta-button,
    .callback-button {
        width: 100%;
        max-width: 300px;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .services h2,
    .about h2,
    .policies h2,
    .contact h2 {
        font-size: 2.2rem;
    }
    
    .paw-container {
        width: 200px;
    }
}

.paw-container {
    position: fixed;
    top: 50px;
    left: 0;
    width: 400px;
    height: 100px;
    z-index: 1000;
    pointer-events: none;
}

.paw {
    position: absolute;
    width: 50px;
    height: 50px;
    opacity: 0;
    animation: pawAnimation 2s linear infinite;
}

.paw.first {
    transform: translate(-30px, 90px);
    animation-delay: 0s;
}

.paw.second {
    transform: translate(40px, 60px);
    animation-delay: 0.3s;
}

.paw.third {
    transform: translate(-10px, 30px);
    animation-delay: 0.6s;
}

.paw.fourth {
    transform: translate(60px, 0px);
    animation-delay: 0.9s;
}

.paw.fifth {
    transform: translate(30px, -40px);
    animation-delay: 1.2s;
}

.paw.sixth {
    transform: translate(120px, -80px);
    animation-delay: 1.5s;
}

@keyframes pawAnimation {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.toe {
    animation: fadeIn 0.3s ease-in-out;
}

.toe1 {
    animation-delay: 0.1s;
}

.toe2 {
    animation-delay: 0.2s;
}

.toe3 {
    animation-delay: 0.3s;
}

.toe4 {
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


@keyframes sparkle {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@keyframes heartGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.9), 0 0 25px rgba(255, 215, 0, 0.6);
    }
}
