/* ═══════════════════════════════════════════════════════
   BOLT PET PLAY V2 — COMPLETE DESIGN SYSTEM
   Fonts: DM Serif Display (headings) + Roboto Condensed (body)
   Colors: Forest Green, Bolt Yellow, White
   ═══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --bg-dark: #021a0a;
    --bg-card: #0a2e14;
    --bg-light: #ffffff;
    --primary: #ffd43b;
    --primary-glow: rgba(255, 212, 59, 0.35);
    --secondary: #2f9e44;
    --secondary-dark: #1b7a2e;
    --text-light: #f1f3f5;
    --text-dark: #1a1a1a;
    --muted: #adb5bd;
    --font-heading: 'DM Serif Display', serif;
    --font-body: 'Roboto Condensed', sans-serif;
    --ease-premium: cubic-bezier(0.19, 1, 0.22, 1);
    --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.5);
    --radius-lg: 24px;
    --radius-md: 16px;
}

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

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

body {
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ── CONTAINER ── */
.container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ── HEADINGS ── */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

.section-label {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    text-align: center;
    color: var(--primary);
    margin-bottom: 24px;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 1.15rem;
    max-width: 640px;
    margin: 0 auto 64px;
    font-weight: 300;
}

/* ═══════════════════════════════
   NAVIGATION
   ═══════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5000;
    padding: 16px 0;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background: rgba(2, 26, 10, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    position: relative;
    display: flex;
    align-items: center;
    height: 48px; 
    width: 140px; /* Space reserved for the logo */
}

.nav-logo img {
    height: 120px;
    width: auto;
    position: absolute;
    top: 5px; /* Moved down to prevent clipping at the top */
    left: 0;
    z-index: 9999;
    transition: transform 0.4s var(--ease-premium);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.nav-logo img:hover { transform: scale(1.05); }

.nav-menu {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-menu a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-light);
    opacity: 0.7;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    opacity: 1;
    color: var(--primary);
}

.nav-menu a:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    z-index: 5001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════
   HERO
   ═══════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%; /* Prioritize the upper part of the image (heads) */
    animation: kenBurns 20s infinite alternate ease-in-out; /* Slightly faster (30s -> 20s) */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(2, 26, 10, 0.5) 0%,
        rgba(2, 26, 10, 0.7) 60%,
        var(--bg-dark) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 24px;
}

.hero-content h1 {
    font-size: clamp(3.5rem, 10vw, 9rem);
    color: var(--primary);
    line-height: 0.95;
    margin-bottom: 20px;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: clamp(0.75rem, 2.2vw, 1.5rem); /* Smaller on mobile to ensure 1 line */
    font-weight: 300;
    color: var(--text-light);
    opacity: 0.85;
    max-width: 1000px; /* Wider to accommodate 1 line */
    width: 100%;
    margin: 0 auto 40px;
    white-space: nowrap; /* Force single line as requested */
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366; /* WhatsApp Green */
    color: #fff;
    padding: 16px 48px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    border-radius: 99px;
    transition: all 0.4s var(--ease-premium);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.03);
    background: #128C7E;
    color: #fff;
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.3);
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    display: flex;
    justify-content: center;
}

.scroll-hint::before {
    content: '';
    width: 4px;
    height: 10px;
    background: var(--primary);
    border-radius: 4px;
    margin-top: 6px;
    animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

@keyframes kenBurns {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

/* ═══════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════ */
.about-section {
    padding: 120px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Image is now much narrower, text can have more room */
    gap: 80px;
    align-items: center;
}

.about-text p {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--muted);
    margin-bottom: 24px;
}

.about-text p strong {
    color: var(--primary);
    font-weight: 600;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5; /* Adjusted to 4/5 for final balance */
    max-height: 700px;
    box-shadow: var(--shadow-deep);
    border: 1px solid rgba(255, 212, 59, 0.15);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s var(--ease-premium);
}

.about-image-wrapper:hover img {
    transform: scale(1.06);
}

/* Gold accent corner */
.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(255, 212, 59, 0.25);
    border-radius: calc(var(--radius-lg) - 6px);
    z-index: 2;
    pointer-events: none;
}

/* ═══════════════════════════════
   SERVICES (TABS)
   ═══════════════════════════════ */
.services-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #031d0b 100%);
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 2px solid rgba(255, 212, 59, 0.2);
    color: var(--muted);
    padding: 14px 36px;
    border-radius: 99px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    transition: all 0.4s var(--ease-premium);
}

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

.tab-btn.active {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
}

/* Service Card (Tab Content) */
.service-panel {
    display: none;
    animation: panelIn 0.6s var(--ease-premium) forwards;
}

.service-panel.active { display: grid; }

@keyframes panelIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-panel {
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 48px;
    overflow: hidden;
}

.service-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-deep);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-premium);
}

.service-image:hover img { transform: scale(1.05); }

.service-body h3 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--primary);
    margin-bottom: 20px;
}

.service-body p {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--muted);
    margin-bottom: 16px;
}

.info-box {
    background: rgba(255, 212, 59, 0.04);
    border-left: 4px solid var(--primary);
    padding: 24px 28px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-top: 28px;
}

.info-box h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.info-box p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.info-box small {
    display: block;
    margin-top: 12px;
    opacity: 0.6;
    font-size: 0.88rem;
}

/* ═══════════════════════════════
   VALUES
   ═══════════════════════════════ */
.values-section {
    padding: 0;
}

.values-wrapper {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 100px 32px 120px;
    border-radius: 60px 60px 0 0;
}

.values-wrapper .section-title {
    color: var(--secondary-dark);
}

.values-wrapper .section-label {
    color: var(--secondary);
}

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

.price-card {
    background: #f8f9fa;
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid #e9ecef;
    transition: all 0.4s var(--ease-premium);
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.price-card h3 {
    font-size: 1.6rem;
    color: var(--secondary-dark);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--secondary);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
    font-size: 1rem;
}

.price-item:last-of-type { border-bottom: none; }

.price-name { font-weight: 500; }

.price-value {
    font-family: var(--font-heading);
    color: var(--secondary-dark);
    font-size: 1.1rem;
    white-space: nowrap;
}

.price-note {
    font-size: 0.85rem;
    color: #868e96;
    margin-top: 16px;
    font-style: italic;
}

/* ═══════════════════════════════
   CONTACT
   ═══════════════════════════════ */
.contact-section {
    padding: 120px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    font-size: 1.15rem;
    color: var(--muted);
}

.contact-detail svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--primary);
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 14px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid rgba(255, 212, 59, 0.3);
    border-radius: var(--radius-md);
    color: var(--primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
}

.social-btn.whatsapp {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
    font-weight: 600;
}

.social-btn.whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3); /* Green glow for green button */
    transform: translateY(-2px);
}

.map-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid rgba(255, 212, 59, 0.2);
    aspect-ratio: 16 / 10;
    box-shadow: var(--shadow-deep);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ═══════════════════════════════
   CTA BANNER
   ═══════════════════════════════ */
.cta-banner {
    text-align: center;
    padding: 100px 32px;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, #0d4a1a 100%);
}

.cta-banner h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--primary);
    margin-bottom: 16px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 36px;
    font-weight: 300;
}

/* ═══════════════════════════════
   FOOTER
   ═══════════════════════════════ */
.footer {
    padding: 48px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer p {
    font-size: 0.85rem;
    color: var(--muted);
    opacity: 0.5;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ═══════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.9s var(--ease-premium), transform 0.9s var(--ease-premium);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ═══════════════════════════════ */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image-wrapper { aspect-ratio: 16 / 9; }
    .service-panel { grid-template-columns: 1fr; padding: 32px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .values-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ═══════════════════════════════ */
@media (max-width: 768px) {
    .container { padding: 0 20px; }

    /* NAV — Mobile Menu */
    .nav-inner { padding: 0 16px; }
    .nav-logo { width: 100px; }
    .nav-logo img { height: 80px; top: 10px; }
    
    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(2, 26, 10, 0.97);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 28px;
        transition: right 0.5s var(--ease-premium);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.open { right: 0; }

    .nav-menu a {
        font-size: 1.2rem;
        opacity: 1;
    }

    /* HERO */
    .hero { min-height: 520px; }
    .hero-cta { padding: 14px 32px; font-size: 1rem; }

    /* SERVICES */
    .service-panel { padding: 24px; }
    .service-body h3 { font-size: 1.8rem; }
    .tabs-nav { gap: 10px; }
    .tab-btn { padding: 10px 22px; font-size: 1rem; }

    /* VALUES */
    .values-wrapper { padding: 60px 20px 80px; border-radius: 32px 32px 0 0; }

    /* CONTACT */
    .social-links { flex-direction: column; }

    .map-frame { aspect-ratio: 4 / 3; }
}

/* ═══════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ═══════════════════════════════ */
@media (max-width: 480px) {
    .hero-content h1 { font-size: 3rem; }
    .section-title { font-size: 2rem; }
    .tab-btn { padding: 10px 18px; font-size: 0.9rem; }
    .price-card { padding: 24px; }
    .price-card h3 { font-size: 1.3rem; }
}
