/*
Theme Name: WagzUp
Theme URI: https://wagzup.local
Author: Antigravity
Description: Custom WordPress Theme for Pet Services, Grooming, Boarding, and Walking. Designed for high conversion.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wagzup
*/

:root {
  --primary: #4F2FC0;
  --secondary: #48BBC0;
  --accent: #F7AAA2;
  --white: #ffffff;
  --text-dark: #333333;
  --text-muted: #666666;
  --bg-light: #f8f9fa;
  --border-radius: 16px;
  --box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* Components */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(79, 47, 192, 0.2);
}

.btn-primary:hover {
  background: #3f259c;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(79, 47, 192, 0.3);
}

.btn-secondary {
  display: inline-block;
  background: var(--bg-light);
  color: var(--primary);
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 600;
  text-align: center;
  border: 2px solid var(--primary);
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--bg-light);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 15px 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

.main-navigation a {
  color: var(--text-dark);
  font-weight: 500;
}

.main-navigation a:hover {
  color: var(--primary);
}

/* Footer */
.site-footer {
  background-color: #222;
  color: #fff;
  padding: 60px 0 20px;
}

.site-footer a {
  color: #aaa;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #888;
}

/* Sticky Action Buttons */
.sticky-actions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.whatsapp-btn, .call-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.whatsapp-btn {
  background-color: #25D366;
}

.call-btn {
  background-color: var(--primary);
}

.whatsapp-btn:hover, .call-btn:hover {
  transform: scale(1.1);
  color: white;
}

@media (min-width: 768px) {
  .call-btn {
    display: none; /* Hide click to call on desktop */
  }
}
