@import url('https://fonts.googleapis.com/css2?family=Readex+Pro:wght@300;400;500;600;700&display=swap');

:root {
  --color-text-main: #2E3031;
  --color-text-hover: #000000;
  --color-primary: #3D5A99;
  --color-primary-hover: #2D4373;
  --color-accent: #F28C28;
  --color-accent-alt: #E67E22;
  --color-cream: #F5F0E6;
  --color-purple: #9B8EC4;
  --color-whatsapp: #25D366;
  --color-surface: #FFFFFF;
  --color-border: #E5E7EB;
  --color-muted: #6B7280;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --transition-fast: all 0.2s ease-in-out;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
  font-family: 'Readex Pro', sans-serif;
  color: var(--color-text-main);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { color: var(--color-primary); font-weight: 700; line-height: 1.2; }
h1 { font-size: 1.9rem; letter-spacing: -0.5px; }
h2 { font-size: 1.6rem; letter-spacing: -0.3px; }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; }
p { margin-bottom: 0.75rem; color: var(--color-muted); }

a { color: var(--color-text-main); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--color-text-hover); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
.section { padding: 40px 0; }
.bg-white { background-color: var(--color-surface); }
.bg-accent { background-color: #FEF9F0; }

.section-header { text-align: center; margin-bottom: 28px; }
.section-header h2 { margin-bottom: 6px; }
.section-header p { color: var(--color-muted); font-size: 0.9rem; max-width: 420px; margin: 0 auto; }

/* Logo */
.logo-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-primary);
  padding: 5px 8px;
  border-radius: 6px;
  line-height: 1;
}
.logo-paws { color: var(--color-accent); font-weight: 800; font-size: 0.9rem; letter-spacing: -0.5px; }
.logo-n { color: var(--color-purple); font-size: 0.5rem; font-weight: 600; margin: -1px 0; }
.logo-play { color: var(--color-cream); font-weight: 800; font-size: 0.9rem; letter-spacing: -0.5px; }
.footer-logo { margin-bottom: 16px; }

/* Header */
header {
  background-color: var(--color-surface);
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; }
.header-actions { display: none; }
.header-actions .btn { padding: 10px 20px; font-size: 14px; gap: 8px; }
.header-actions .btn i { font-size: 16px; }
.menu-toggle {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--color-primary);
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-links {
  display: none;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-surface);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 4px 0;
  z-index: 999;
}
.nav-links.open { display: flex; }
.nav-links a {
  font-weight: 500;
  font-size: 15px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--color-border);
}
.nav-links a:last-child { border-bottom: none; }
.nav-links a:hover { color: var(--color-accent); background: #f9f9f9; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  text-align: center;
}
.btn-primary { background-color: var(--color-primary); color: #FFF; }
.btn-primary:hover { background-color: var(--color-primary-hover); color: #FFF; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.btn-accent { background-color: var(--color-accent); color: var(--color-primary); }
.btn-accent:hover { background-color: var(--color-accent-alt); color: #FFF; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(244,81,30,0.3); }
.btn-whatsapp { background-color: var(--color-whatsapp); color: #FFF; }
.btn-whatsapp:hover { background-color: #1DA851; color: #FFF; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(37,211,102,0.3); }
.btn-full { width: 100%; }

/* Hero */
.hero { padding: 32px 0 24px; overflow: hidden; }
.hero-inner { display: flex; flex-direction: column; gap: 24px; }
.hero-content { text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(61,90,153,0.08);
  color: var(--color-primary);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.hero-content h1 { font-size: 1.9rem; margin-bottom: 10px; line-height: 1.15; }
.hero-content p { font-size: 0.9rem; color: var(--color-muted); max-width: 440px; margin-bottom: 6px; }
.hero-tagline { font-size: 0.9rem; color: var(--color-accent); margin-bottom: 20px; font-weight: 700; }
.hero-btns { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 300px; }
.hero-media { position: relative; }
.hero-media video {
  width: 100%;
  height: auto;
  max-height: 220px;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
  object-fit: cover;
  display: block;
}
.video-toggle {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-toggle:hover { background: rgba(0,0,0,0.8); }

/* Services */
.services-list { display: flex; flex-direction: column; gap: 12px; }
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--color-surface);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
}
.service-item:hover { border-color: var(--color-accent); }
.service-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: var(--color-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #FFF;
}
.service-text h3 { font-size: 1rem; margin-bottom: 2px; }
.service-text p { font-size: 0.85rem; margin-bottom: 0; line-height: 1.5; }

/* Grid */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 16px; }

/* Cards */
.card-flat { border: none; box-shadow: none; background: transparent; padding: 16px 0; }
.card-flat:hover { border-color: transparent; box-shadow: none; }
.card-flat .card-icon { margin-bottom: 12px; }
.card-flat h3 { margin-bottom: 4px; }
.card-flat p { font-size: 0.85rem; margin-bottom: 0; line-height: 1.5; }
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 18px;
}
.icon-green { background-color: #E6F4EA; color: #137333; }
.icon-red { background-color: #FCE8E6; color: #C5221F; }
.icon-blue { background-color: #E8F0FE; color: #1967D2; }
.icon-accent { color: var(--color-accent); }
.icon-whatsapp { color: var(--color-whatsapp); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.gallery-item { overflow: hidden; border-radius: 10px; aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
.gallery-item:hover img { transform: scale(1.03); }

/* About */
.about-founder { display: flex; flex-direction: column; gap: 24px; text-align: center; }
.about-image { flex: none; width: 100%; max-width: 260px; margin: 0 auto; }
.about-image img { width: 100%; border-radius: var(--radius-md); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.about-content .section-header { margin-bottom: 8px; }
.about-content .section-header h2 { text-align: center; }
.about-name { color: var(--color-accent); margin-bottom: 12px; font-size: 1.15rem; }
.about-content p { font-size: 0.9rem; line-height: 1.6; }

/* Why Choose */
.why-choose { margin-top: 40px; }

/* Contact */
.contact-wrapper { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 1000px; margin: 0 auto; }
.contact-info-box, .enquiry-form-box {
  background: var(--color-surface);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.contact-info-box h3 { margin-bottom: 16px; font-size: 1.15rem; }
.contact-item { margin-bottom: 16px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-item h4 { margin-bottom: 2px; font-size: 0.95rem; }
.contact-item p { color: var(--color-muted); margin-bottom: 0; font-size: 0.85rem; }
.contact-item a { color: var(--color-text-main); font-weight: 500; font-size: 0.9rem; }
.enquiry-form-box h3 { margin-bottom: 2px; font-size: 1.15rem; }
.form-subtitle { color: var(--color-muted); margin-bottom: 16px; font-size: 0.85rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 10px; }
.form-group { margin-bottom: 12px; }
.form-group label { display: block; font-weight: 600; font-size: 12px; margin-bottom: 4px; color: var(--color-primary); text-transform: uppercase; letter-spacing: 0.3px; }
.input-field { width: 100%; padding: 10px 12px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); font-family: inherit; font-size: 14px; transition: var(--transition-fast); background: var(--color-surface); color: var(--color-text-main); }
.input-field:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(61,90,153,0.1); }
.input-field::placeholder { color: #B0B0B0; font-size: 13px; }
textarea.input-field { resize: vertical; min-height: 72px; }
select.input-field { 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='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 14px;
  right: 14px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-whatsapp);
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition-smooth);
}
.whatsapp-float:hover { transform: scale(1.1); color: white; }

/* Footer */
footer { background-color: var(--color-surface); padding: 32px 0 20px; border-top: 1px solid var(--color-border); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 20px; }
.footer-grid h4 { margin-bottom: 10px; font-size: 0.95rem; }
.footer-grid > div > p { font-size: 0.85rem; margin-bottom: 6px; }
.footer-grid > div > a { font-size: 0.85rem; font-weight: 500; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--color-text-main); font-size: 0.85rem; }
.footer-links a:hover { color: var(--color-accent); }
.social-links { display: flex; gap: 14px; font-size: 20px; }
.copyright { text-align: center; padding-top: 16px; border-top: 1px solid var(--color-border); color: #9CA3AF; font-size: 12px; }
.built-by { display: block; margin-top: 6px; font-size: 12px; color: #9CA3AF; }
.built-by a { text-decoration: none; font-weight: 700; }
.built-by a:hover { opacity: 0.8; }
.fm-first { color: #0F0F11; }
.fm-made { color: #4A6CF7; }

/* Background paw prints + dots */
.bg-white::before,
.bg-accent::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Cellipse cx='80' cy='120' rx='22' ry='28' fill='%23000' opacity='0.03' transform='rotate(-15 80 120)'/%3E%3Ccircle cx='55' cy='80' r='11' fill='%23000' opacity='0.03'/%3E%3Ccircle cx='80' cy='68' r='13' fill='%23000' opacity='0.03'/%3E%3Ccircle cx='105' cy='80' r='11' fill='%23000' opacity='0.03'/%3E%3Cellipse cx='350' cy='80' rx='20' ry='26' fill='%23000' opacity='0.025' transform='rotate(20 350 80)'/%3E%3Ccircle cx='328' cy='46' r='10' fill='%23000' opacity='0.025'/%3E%3Ccircle cx='350' cy='35' r='12' fill='%23000' opacity='0.025'/%3E%3Ccircle cx='372' cy='46' r='10' fill='%23000' opacity='0.025'/%3E%3Cellipse cx='180' cy='340' rx='24' ry='30' fill='%23000' opacity='0.028' transform='rotate(10 180 340)'/%3E%3Ccircle cx='153' cy='296' r='12' fill='%23000' opacity='0.028'/%3E%3Ccircle cx='180' cy='282' r='14' fill='%23000' opacity='0.028'/%3E%3Ccircle cx='207' cy='296' r='12' fill='%23000' opacity='0.028'/%3E%3Cellipse cx='500' cy='380' rx='22' ry='27' fill='%23000' opacity='0.025' transform='rotate(-25 500 380)'/%3E%3Ccircle cx='478' cy='342' r='11' fill='%23000' opacity='0.025'/%3E%3Ccircle cx='500' cy='330' r='13' fill='%23000' opacity='0.025'/%3E%3Ccircle cx='522' cy='342' r='11' fill='%23000' opacity='0.025'/%3E%3Cellipse cx='60' cy='520' rx='20' ry='25' fill='%23000' opacity='0.022' transform='rotate(5 60 520)'/%3E%3Ccircle cx='40' cy='488' r='10' fill='%23000' opacity='0.022'/%3E%3Ccircle cx='60' cy='478' r='12' fill='%23000' opacity='0.022'/%3E%3Ccircle cx='80' cy='488' r='10' fill='%23000' opacity='0.022'/%3E%3Cellipse cx='420' cy='560' rx='22' ry='27' fill='%23000' opacity='0.02' transform='rotate(-10 420 560)'/%3E%3Ccircle cx='398' cy='524' r='11' fill='%23000' opacity='0.02'/%3E%3Ccircle cx='420' cy='512' r='13' fill='%23000' opacity='0.02'/%3E%3Ccircle cx='442' cy='524' r='11' fill='%23000' opacity='0.02'/%3E%3Ccircle cx='250' cy='180' r='5' fill='%23000' opacity='0.02'/%3E%3Ccircle cx='520' cy='200' r='4' fill='%23000' opacity='0.018'/%3E%3Ccircle cx='140' cy='450' r='6' fill='%23000' opacity='0.02'/%3E%3Ccircle cx='460' cy='120' r='4' fill='%23000' opacity='0.018'/%3E%3Ccircle cx='300' cy='500' r='5' fill='%23000' opacity='0.018'/%3E%3Ccircle cx='80' cy='300' r='3' fill='%23000' opacity='0.02'/%3E%3Ccircle cx='550' cy='480' r='4' fill='%23000' opacity='0.018'/%3E%3C/svg%3E");
  background-size: 600px 600px;
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0;
}
.bg-white, .bg-accent { position: relative; }
.bg-white > *, .bg-accent > * { position: relative; z-index: 1; }

/* Tablet */
@media (min-width: 600px) {
  body { font-size: 16px; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.3rem; }
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 40px; }
  .container { padding: 0 24px; }
  .hero { padding: 40px 0 32px; }
  .hero-inner { gap: 32px; }
  .hero-content h1 { font-size: 2.6rem; }
  .hero-content p { font-size: 1rem; max-width: 500px; }
  .hero-tagline { font-size: 1rem; }
  .hero-media video { max-height: 340px; border-radius: 24px 8px 24px 8px; }
  .hero-btns { flex-direction: row; max-width: none; }
  .hero-btns .btn { width: auto; flex: 1; }
  .services-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .service-item { padding: 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .about-image { max-width: 300px; }
  .about-founder { gap: 32px; }
  .contact-wrapper { gap: 20px; }
  .contact-info-box, .enquiry-form-box { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { text-align: center; }
  .why-choose { margin-top: 56px; }
}

/* Desktop */
@media (min-width: 992px) {
  body { font-size: 16px; }
  h1 { font-size: 3.2rem; letter-spacing: -1px; }
  h2 { font-size: 2.4rem; letter-spacing: -0.5px; }
  h3 { font-size: 1.6rem; }
  p { margin-bottom: 1rem; }
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 48px; }
  .container { padding: 0 24px; }
  .menu-toggle { display: none; }
  .header-actions { display: flex; }
  .nav-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
    gap: 32px;
  }
  .nav-links a { padding: 0; border-bottom: none; font-size: 15px; }
  .nav-links a:hover { background: none; color: var(--color-accent); }
  .logo-box { padding: 8px 14px; }
  .logo-paws { font-size: 1.2rem; }
  .logo-n { font-size: 0.65rem; }
  .logo-play { font-size: 1.2rem; }
  .header-inner { padding: 12px 0; }
  .hero { padding: 56px 0 72px; }
  .hero-inner { flex-direction: row; align-items: center; gap: 48px; }
  .hero-content { flex: 1; text-align: left; align-items: flex-start; }
  .hero-content h1 { font-size: 3.2rem; }
  .hero-content p { font-size: 1.05rem; max-width: none; }
  .hero-tagline { font-size: 1.05rem; }
  .hero-btns { max-width: none; }
  .hero-media { flex: 1; }
  .hero-media video { max-height: 460px; border-radius: 36px 8px 36px 8px; }
  .video-toggle { bottom: 16px; right: 16px; width: 44px; height: 44px; font-size: 18px; }
  .services-list { grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
  .service-item { padding: 24px; flex-direction: column; gap: 10px; text-align: center; align-items: center; }
  .service-icon { width: 52px; height: 52px; border-radius: 14px; font-size: 20px; }
  .service-text h3 { font-size: 1.15rem; }
  .service-text p { font-size: 0.9rem; }
  .card-flat .card-icon { width: 52px; height: 52px; font-size: 20px; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .about-founder { flex-direction: row; gap: 56px; text-align: left; }
  .about-image { flex: 0 0 380px; max-width: 380px; }
  .about-content .section-header h2 { text-align: left; }
  .about-content p { font-size: 1rem; }
  .about-name { font-size: 1.4rem; }
  .contact-wrapper { grid-template-columns: 1fr 1.5fr; gap: 28px; }
  .contact-info-box, .enquiry-form-box { padding: 32px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
  .footer-grid > div:last-child { text-align: left; }
  footer { padding: 64px 0 32px; }
  .copyright { padding-top: 20px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 56px; height: 56px; font-size: 28px; }
  .why-choose { margin-top: 72px; }
}
