/* ============================================
   GenusPupClub — Premium Dog Sitting
   Warm, playful, trustworthy
   ============================================ */

:root {
    --primary: #FF6B35;
    --primary-dark: #E55A2B;
    --primary-light: #FF8A5C;
    --secondary: #2D3436;
    --accent: #00B894;
    --accent-light: #55EFC4;
    --warm: #FFEAA7;
    --warm-dark: #FDCB6E;
    --bg: #FFFAF5;
    --bg-alt: #FFF5EB;
    --text: #2D3436;
    --text-light: #636E72;
    --text-muted: #B2BEC3;
    --white: #FFFFFF;
    --shadow: rgba(45, 52, 54, 0.08);
    --shadow-lg: rgba(45, 52, 54, 0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --font-display: 'Fredoka', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* ---- NAV ---- */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255, 250, 245, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px var(--shadow); }
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--text); }
.logo-icon { font-size: 1.8rem; }
.logo-text { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; }
.logo-text strong { color: var(--primary); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
    text-decoration: none; color: var(--text-light); font-weight: 500; font-size: 0.95rem;
    transition: var(--transition); position: relative;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--primary); transition: var(--transition); border-radius: 1px;
}
.nav-links a:hover::after { width: 100%; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text); }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 28px; border-radius: var(--radius-sm); font-weight: 600;
    font-size: 0.95rem; text-decoration: none; cursor: pointer; border: 2px solid transparent;
    transition: var(--transition); font-family: var(--font-body);
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-nav { padding: 8px 20px; font-size: 0.88rem; border-radius: 50px; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: var(--radius); }
.btn-full { width: 100%; }

/* ---- HERO ---- */
.hero {
    min-height: 90vh; display: flex; align-items: center; padding: 100px 24px 60px;
    max-width: 1200px; margin: 0 auto; position: relative; overflow: hidden;
}
.hero-content { flex: 1; max-width: 600px; }
.hero-badge {
    display: inline-block; padding: 8px 20px; border-radius: 50px;
    background: var(--warm); color: var(--primary-dark); font-weight: 600;
    font-size: 0.88rem; margin-bottom: 24px; letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(253, 203, 110, 0.3);
}
.hero h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.15; margin-bottom: 20px; color: var(--secondary); }
.highlight { color: var(--primary); position: relative; }
.hero-sub { font-size: 1.15rem; color: var(--text-light); margin-bottom: 32px; max-width: 500px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 32px; }
.trust-item { text-align: center; }
.trust-item strong { display: block; font-size: 1.8rem; font-family: var(--font-display); color: var(--primary); font-weight: 700; }
.trust-item span { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 500; }
.hero-trust { display: flex; gap: 40px; padding-top: 8px; }

.hero-visual { flex: 1; position: relative; min-height: 420px; display: flex; align-items: center; justify-content: center; }
.hero-blob {
    width: 420px; height: 420px; border-radius: 50%; background: linear-gradient(135deg, #FFECD2 0%, #FCB69F 100%);
    opacity: 0.4; position: absolute; animation: blobFloat 6s ease-in-out infinite;
    right: -40px; top: 50%; transform: translateY(-50%);
}
.hero-paw { position: absolute; font-size: 5rem; animation: pawBounce 3s ease-in-out infinite; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1)); }
.paw-1 { top: 15%; left: 15%; animation-delay: 0s; font-size: 4.5rem; }
.paw-2 { top: 35%; right: 10%; animation-delay: 1s; font-size: 6.5rem; }
.paw-3 { bottom: 15%; left: 30%; animation-delay: 2s; font-size: 5rem; }

.hero-dog-img {
    width: 380px; height: 380px; object-fit: cover; border-radius: 50%;
    position: relative; z-index: 2; box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
    border: 4px solid rgba(255, 255, 255, 0.8);
    animation: heroFloat 4s ease-in-out infinite;
}
@keyframes blobFloat { 0%, 100% { transform: translateY(-50%) scale(1) rotate(0deg); } 50% { transform: translateY(-50%) scale(1.05) rotate(5deg); } }
@keyframes heroFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---- SECTIONS ---- */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.section-tag {
    display: inline-block; padding: 4px 14px; border-radius: 50px;
    background: var(--warm); color: var(--primary-dark); font-weight: 600;
    font-size: 0.82rem; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px;
}
.section-header h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 12px; }
.section-header p { color: var(--text-light); font-size: 1.05rem; }

/* ---- SERVICES ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.service-card {
    background: var(--white); border-radius: var(--radius); padding: 32px;
    box-shadow: 0 2px 12px var(--shadow); transition: var(--transition); position: relative;
    border: 2px solid transparent;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px var(--shadow-lg); }
.service-card.featured { border-color: var(--primary); }
.service-badge {
    position: absolute; top: -12px; right: 20px; background: var(--primary);
    color: var(--white); padding: 4px 14px; border-radius: 50px; font-size: 0.78rem; font-weight: 600;
}
.service-icon { font-size: 2.4rem; margin-bottom: 16px; }
.service-img {
    width: 100%; height: 180px; object-fit: cover; border-radius: 12px;
    margin-bottom: 16px;
}
.service-card h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 10px; }
.service-card p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 16px; }
.service-features { list-style: none; }
.service-features li {
    padding: 6px 0; font-size: 0.88rem; color: var(--text-light);
    display: flex; align-items: center; gap: 8px;
}
.service-features li::before { content: '\2713'; color: var(--accent); font-weight: 700; }

/* ---- ABOUT ---- */
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
.about-content h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.2rem); margin-bottom: 16px; }
.about-content p { color: var(--text-light); margin-bottom: 16px; font-size: 1rem; }
.about-features { display: grid; gap: 16px; margin-top: 24px; }
.about-feature { display: flex; gap: 12px; align-items: flex-start; }
.feature-check {
    width: 28px; height: 28px; border-radius: 50%; background: var(--accent);
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700; flex-shrink: 0;
}
.about-feature strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.about-feature p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.about-visual { display: flex; justify-content: center; }
.about-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white); border-radius: var(--radius-lg); padding: 48px 36px;
    text-align: center; max-width: 320px; box-shadow: 0 12px 40px rgba(255, 107, 53, 0.25);
}
.about-emoji { font-size: 4rem; margin-bottom: 16px; }
.about-card p { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; line-height: 1.4; }

/* ---- PRICING ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.price-card {
    background: var(--white); border-radius: var(--radius); padding: 32px;
    text-align: center; box-shadow: 0 2px 12px var(--shadow); transition: var(--transition);
    border: 2px solid transparent; position: relative;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px var(--shadow-lg); }
.price-card.popular { border-color: var(--primary); }
.popular-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: var(--white); padding: 4px 18px;
    border-radius: 50px; font-size: 0.78rem; font-weight: 600;
}
.price-card h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 8px; }
.price { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--primary); }
.price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.price-desc { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 20px; }
.price-card ul { list-style: none; text-align: left; margin-bottom: 24px; }
.price-card li { padding: 8px 0; font-size: 0.9rem; color: var(--text-light); border-bottom: 1px solid rgba(0,0,0,0.04); display: flex; gap: 8px; }
.price-card li::before { content: '\2713'; color: var(--accent); font-weight: 700; }
.pricing-note { text-align: center; color: var(--text-muted); font-size: 0.88rem; margin-top: 24px; }

/* ---- REVIEWS ---- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.review-card {
    background: var(--white); border-radius: var(--radius); padding: 28px;
    box-shadow: 0 2px 12px var(--shadow);
}
.review-stars { color: var(--warm-dark); font-size: 1.2rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-card p { font-size: 0.95rem; color: var(--text-light); font-style: italic; margin-bottom: 16px; line-height: 1.6; }
.reviewer strong { display: block; font-size: 0.92rem; }
.reviewer span { font-size: 0.82rem; color: var(--text-muted); }

/* ---- HOW IT WORKS ---- */
.steps-grid { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.step {
    background: var(--white); border-radius: var(--radius); padding: 32px;
    text-align: center; max-width: 280px; box-shadow: 0 2px 12px var(--shadow);
}
.step-num {
    width: 48px; height: 48px; border-radius: 50%; background: var(--primary);
    color: var(--white); font-family: var(--font-display); font-size: 1.4rem;
    font-weight: 700; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.step h3 { font-family: var(--font-display); margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--text-light); }
.step-arrow { font-size: 1.5rem; color: var(--primary); font-weight: 700; }

/* ---- FAQ ---- */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.06); }
.faq-q {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0; background: none; border: none; cursor: pointer;
    font-size: 1rem; font-weight: 600; color: var(--text); text-align: left;
    font-family: var(--font-body);
}
.faq-q:hover { color: var(--primary); }
.faq-arrow { transition: var(--transition); font-size: 0.8rem; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 0 20px; color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

/* ---- BOOKING / CTA ---- */
.cta-section { background: linear-gradient(135deg, var(--secondary) 0%, #1a1a2e 100%); color: var(--white); }
.cta-content { max-width: 700px; margin: 0 auto; text-align: center; }
.cta-content h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.7); margin-bottom: 32px; font-size: 1.05rem; }
.booking-form { text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.booking-form input, .booking-form select, .booking-form textarea {
    width: 100%; padding: 14px 16px; border-radius: var(--radius-sm);
    border: 2px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.06);
    color: var(--white); font-size: 0.95rem; font-family: var(--font-body);
    transition: var(--transition); outline: none;
}
.booking-form input::placeholder, .booking-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--primary); background: rgba(255,255,255,0.1); }
.booking-form textarea { margin-bottom: 16px; resize: vertical; }
.booking-form select option { background: var(--secondary); color: var(--white); }

/* ---- FOOTER ---- */
.footer { background: var(--secondary); color: rgba(255,255,255,0.8); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer-brand p { font-size: 0.9rem; margin-top: 12px; opacity: 0.6; line-height: 1.6; }
.footer-brand .logo { margin-bottom: 8px; }
.footer-brand .logo-text { color: var(--white); }
.footer-links h4 { color: var(--white); font-family: var(--font-display); margin-bottom: 16px; font-size: 1rem; }
.footer-links a { display: block; color: rgba(255,255,255,0.5); text-decoration: none; padding: 4px 0; font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--primary-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; text-align: center; font-size: 0.85rem; opacity: 0.4; }

/* ---- MOBILE ---- */
@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 20px; gap: 16px; box-shadow: 0 8px 30px var(--shadow-lg); }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }
    .hero { flex-direction: column; min-height: auto; padding: 100px 24px 40px; }
    .hero-visual { min-height: 200px; }
    .hero-trust { gap: 20px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { order: -1; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .form-row { grid-template-columns: 1fr; }
    .steps-grid { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); }
    .services-grid { grid-template-columns: 1fr; }
}
