/* Mobile Pet Grooming Vans - Main Styles */

/* Color Variables - Pastel High-Contrast Palette */
:root {
  --primary-blue: #4ea4f2;
  --primary-orange: #f6695d;
  --primary-green: #6cd4af;
  --primary-purple: #db98d6;
  --primary-yellow: #fff098;
  
  --primary-blue-light: #bad2f1;
  --primary-orange-light: #f0a980;
  --primary-green-light: #a2ebe0;
  --primary-purple-light: #e7b5e2;
  --primary-yellow-light: #ffeca5;
  
  --primary-blue-dark: #2b497e;
  --primary-orange-dark: #d66730;
  --primary-green-dark: #398d7b;
  --primary-purple-dark: #b280bb;
  --primary-yellow-dark: #d2c963;
  
  --text-dark: #384c61;
  --text-light: #ECF0F1;
  --bg-light: #FAFBFC;
  --bg-dark: #3b4c64;
}

/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  font-size: 16px;
}

/* Conservative Font Sizes */
h1 { font-size: 2.2rem; font-weight: 600; }
h2 { font-size: 1.8rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 500; }
h4 { font-size: 1.3rem; font-weight: 500; }
h5 { font-size: 1.1rem; font-weight: 500; }
p { font-size: 1rem; margin-bottom: 1rem; }

/* Navbar Brand - Conservative Size */
.navbar-brand {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-blue);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-green-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  background: var(--primary-orange-light);
  opacity: 0.6;
}

.hero-decoration-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
}

.hero-decoration-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  background: var(--primary-purple-light);
}

/* Services Cards */
.service-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-price {
  background: var(--primary-orange);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
}

/* Team Cards */
.team-card {
  text-align: center;
  border: none;
  border-radius: 15px;
  padding: 1.5rem;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-blue-light);
}

/* Review Cards */
.review-card {
  border: none;
  border-radius: 15px;
  background: var(--bg-light);
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* FAQ Cards */
.faq-card {
  border: 1px solid var(--primary-blue-light);
  border-radius: 10px;
  margin-bottom: 1rem;
  background: white;
}

.faq-question {
  background: var(--primary-blue-light);
  color: var(--text-dark);
  padding: 1rem;
  margin: 0;
  border-radius: 10px 10px 0 0;
  font-weight: 600;
}

.faq-answer {
  padding: 1rem;
  margin: 0;
  background: white;
  border-radius: 0 0 10px 10px;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-control {
  border-radius: 10px;
  border: 2px solid var(--primary-blue-light);
  padding: 0.8rem;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(58, 132, 215, 0.25);
}

/* Buttons */
.btn-primary {
  background: var(--primary-blue);
  border: none;
  border-radius: 25px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-2px);
}

/* Section Spacing */
.section-padding {
  padding: 4rem 0;
}

/* Footer - High Contrast */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-blue-light);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-blue-light);
}

/* Gallery */
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 1.5rem;
  border-radius: 15px;
  background: white;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

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

/* Timeline */
.timeline-item {
  border-left: 3px solid var(--primary-blue);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--primary-blue);
  border-radius: 50%;
  position: absolute;
  left: -7.5px;
  top: 0.5rem;
}

/* Case Study Cards */
.case-study-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}

/* Career Cards */
.career-card {
  border: 2px solid var(--primary-green-light);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: white;
}

/* Core Info Grid */
.core-info-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 15px;
  background: var(--bg-light);
  margin-bottom: 1rem;
}

.core-info-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Blog Cards */
.blog-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
} 

.hero-section h1 {
    padding-top: 250px;
}


/* Team Social Links - Glass Style */
.team-social-links {
    margin-top: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.5);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.3);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 0.5);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.5);
}

.x-link {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
