/* ===== Sit Happens – Brand Styles ===== */
:root {
    --orange: #FF6B35;
    --orange-dark: #E85A2A;
    --teal: #004E64;
    --teal-light: #0A7A8C;
    --cream: #FFF8F0;
    --cream-dark: #F5EDE3;
    --dark: #1A1A2E;
    --gray: #4A4A5A;
    --light-gray: #E8E4DF;
    --success: #2D6A4F;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(26, 26, 46, 0.08);
    --shadow-lg: 0 12px 40px rgba(26, 26, 46, 0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --font: 'Nunito', system-ui, sans-serif;
    --font-display: 'Poppins', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--orange); }

.container {
    width: min(1120px, 92%);
    margin-inline: auto;
}

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 248, 240, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--light-gray);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--dark);
}

.logo:hover { color: var(--dark); }
.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.logo-icon { font-size: 1.6rem; }

.nav {
    display: flex;
    gap: 1.75rem;
}

.nav-link {
    font-weight: 600;
    color: var(--gray);
    font-size: 0.95rem;
    position: relative;
}

.nav-link:hover,
.nav-link.active { color: var(--orange); }

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.85rem 1.6rem;
    font-family: var(--font);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--teal);
    border-color: var(--teal);
}

.btn-outline:hover {
    background: var(--teal);
    color: var(--white);
}

.btn-block { width: 100%; }

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 4rem 0 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(255, 107, 53, 0.12), transparent),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(0, 78, 100, 0.1), transparent),
        linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 4.2rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.hero-tagline {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.badge {
    background: var(--white);
    padding: 0.45rem 0.9rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal);
    box-shadow: var(--shadow);
}

/* ===== Sections ===== */
.section {
    padding: 5rem 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.6rem;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    max-width: 520px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
}

/* ===== Services ===== */
.services { background: var(--white); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 1.75rem;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    background: linear-gradient(145deg, #FFF5EE, #FFE8D6);
    border-color: rgba(255, 107, 53, 0.25);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--orange);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.service-icon {
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.25rem;
}

.service-features li {
    font-size: 0.9rem;
    padding: 0.25rem 0;
    padding-left: 1.3rem;
    position: relative;
    color: var(--gray);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.price {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--teal) !important;
}

.services-note {
    text-align: center;
    margin-top: 2.5rem;
    color: var(--gray);
    font-style: italic;
}

/* ===== How it works ===== */
.how-it-works { background: var(--cream-dark); }

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

.step {
    text-align: center;
    padding: 1.5rem 1rem;
}

.step-num {
    width: 48px;
    height: 48px;
    background: var(--orange);
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step h3 {
    font-family: var(--font-display);
    margin-bottom: 0.4rem;
}

.step p { color: var(--gray); font-size: 0.95rem; }

/* ===== Booking ===== */
.booking { background: var(--white); }

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    align-items: start;
}

.calendar-panel h3,
.booking-form-panel h3 {
    font-family: var(--font-display);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Calendar */
.calendar {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow);
}

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

.cal-header button {
    background: var(--white);
    border: 1px solid var(--light-gray);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--dark);
    transition: 0.2s;
}

.cal-header button:hover {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
}

#monthYear {
    font-weight: 700;
    font-size: 1.05rem;
}

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.15s;
    border: none;
    background: transparent;
    color: var(--dark);
}

.cal-day:hover:not(.disabled):not(.empty) {
    background: rgba(255, 107, 53, 0.15);
}

.cal-day.available {
    background: rgba(45, 106, 79, 0.12);
    color: var(--success);
}

.cal-day.selected {
    background: var(--orange) !important;
    color: white !important;
}

.cal-day.disabled {
    color: #bbb;
    cursor: not-allowed;
    opacity: 0.5;
}

.cal-day.empty { cursor: default; }

.cal-note {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.75rem;
    text-align: center;
}

/* Form */
.booking-form {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.1rem;
}

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

label {
    display: block;
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
    color: var(--dark);
}

input, select, textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 1rem;
    background: var(--white);
    color: var(--dark);
    transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.form-summary {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-bottom: 1.25rem;
    border-left: 4px solid var(--orange);
}

.form-summary h4 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.form-summary p {
    font-size: 0.95rem;
    color: var(--gray);
}

.paypal-section {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.paypal-section h3 {
    margin-bottom: 0.5rem;
}

.paypal-section > p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

#paypal-button-container {
    max-width: 320px;
    margin: 0 auto 1.5rem;
}

.paypal-note {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 1.25rem;
}

/* ===== About ===== */
.about { background: var(--cream-dark); }

.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content .section-title { text-align: left; }

.about-content p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.about-list {
    list-style: none;
    margin-top: 1.5rem;
}

.about-list li {
    padding: 0.4rem 0;
    padding-left: 1.6rem;
    position: relative;
    font-weight: 600;
}

.about-list li::before {
    content: '🐾';
    position: absolute;
    left: 0;
}

.about-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.75rem;
}

.about-card h4 {
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.about-card p { color: var(--gray); font-size: 0.95rem; }

/* ===== Testimonials ===== */
.testimonials { background: var(--white); }

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

.testimonial {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 1.75rem;
    border-left: 4px solid var(--orange);
}

.testimonial p {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 1rem;
}

.testimonial footer {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--teal);
}

/* ===== Contact ===== */
.contact { background: var(--cream-dark); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.contact-item strong {
    display: block;
    margin-bottom: 0.15rem;
}

.contact-item p { color: var(--gray); }

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-btn {
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    color: var(--dark);
}

.social-btn:hover {
    background: var(--orange);
    color: white;
}

.contact-form {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: #ccc;
    padding: 3.5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
}

.footer .logo { color: white; margin-bottom: 0.75rem; }
.footer .logo:hover { color: var(--orange); }

.footer-brand p { font-size: 0.95rem; max-width: 280px; }

.footer h4 {
    color: white;
    font-family: var(--font-display);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.footer-links a {
    display: block;
    color: #aaa;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.footer-links a:hover { color: var(--orange); }

.footer-legal p { font-size: 0.9rem; margin-bottom: 0.3rem; }

/* ===== Toast ===== */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: white;
    padding: 1rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    animation: slideUp 0.35s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translate(-50%, 20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .booking-layout,
    .about-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about-content .section-title { text-align: center; }
}

@media (max-width: 700px) {
    .nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid var(--light-gray);
        transform: translateY(-120%);
        opacity: 0;
        transition: 0.3s;
        pointer-events: none;
    }

    .nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-toggle { display: flex; }

    .form-row { grid-template-columns: 1fr; }

    .hero { min-height: auto; padding: 3rem 0 4rem; }
}

/* ===== Landing page enhancements ===== */
.hero-landing {
    min-height: 70vh;
    text-align: center;
}
.hero-landing .hero-content {
    max-width: 720px;
    margin-inline: auto;
}
.hero-landing .hero-title {
    font-size: clamp(2.4rem, 6vw, 3.4rem);
}
.hero-landing .hero-sub {
    margin-inline: auto;
}
.hero-landing .hero-cta {
    justify-content: center;
}
.hero-landing .hero-badges {
    justify-content: center;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 1rem 0 0;
    font-size: 0.9rem;
    color: var(--gray);
}
.breadcrumbs a { color: var(--teal); }
.breadcrumbs span { margin: 0 0.4rem; color: #aaa; }

/* FAQ cards already use service-card – slight tweak */
.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}
.faq-item p {
    color: var(--gray);
    font-size: 0.95rem;
}
