/* ========================================
   ECO-FRIENDLY PET ACCESSORIES BRAND
   MAIN STYLESHEET
======================================== */

/* Color Palette - Eco-Friendly Theme */
:root {
  /* Primary Colors */
  --eco-green: #76a465;
  --earth-brown: #947551;
  --leaf-sage: #a1b546;
  --sky-blue: #9ee9fb;
  --warm-coral: #fcac89;
  
  /* Light Shades */
  --eco-green-light: #b0d97d;
  --earth-brown-light: #a18966;
  --leaf-sage-light: #bfe45d;
  --sky-blue-light: #aae3f5;
  --warm-coral-light: #ffab9c;
  
  /* Dark Shades */
  --eco-green-dark: #446b3c;
  --earth-brown-dark: #6c5748;
  --leaf-sage-dark: #8ca638;
  --sky-blue-dark: #74cdd7;
  --warm-coral-dark: #f48466;
  
  /* Neutral Colors */
  --eco-white: #FEFEFE;
  --eco-light-gray: #F8F9FA;
  --eco-gray: #ecf7ff;
  --eco-dark-gray: #687279;
  --eco-charcoal: #2b3035;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--eco-charcoal);
  background-color: var(--eco-white);
  line-height: 1.6;
}

/* Typography - Conservative Sizes */
h1 {
  font-size: 2.57rem;
  font-weight: 600;
  color: var(--eco-green-dark);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--earth-brown-dark);
}

h3 {
  font-size: 1.84rem;
  font-weight: 500;
  color: var(--leaf-sage-dark);
}

h4 {
  font-size: 1.62rem;
  font-weight: 500;
}

h5 {
  font-size: 1.29rem;
  font-weight: 500;
}

h6 {
  font-size: 1.22rem;
  font-weight: 500;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Navigation - Conservative Brand Size */
.navbar-brand {
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--eco-green-dark);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--eco-green-light) 0%, var(--sky-blue-light) 100%);
  display: flex;
  align-items: center;
}

.hero-content {
  z-index: 2;
    padding-top: 278px;
}

.hero-image {
  z-index: 1;
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  background: var(--leaf-sage);
  top: 10%;
  right: 10%;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  background: var(--warm-coral);
  bottom: 20%;
  left: 15%;
}

/* Section Styling */
.section-padding {
  padding: 5rem 0;
}

.section-bg-light {
  background-color: var(--eco-light-gray);
}

.section-bg-white {
  background-color: var(--eco-white);
}

/* Services Cards */
.service-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 13px 25px rgba(0,0,0,0.15);
}

.service-price {
  font-size: 1.61rem;
  font-weight: 700;
  color: var(--eco-green-dark);
}

/* Features Grid */
.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--leaf-sage);
  margin-bottom: 1rem;
}

/* Price Plans */
.price-card {
  border: 4px solid var(--eco-gray);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.price-card:hover {
  border-color: var(--eco-green);
  transform: translateY(-5px);
}

.price-card.featured {
  border-color: var(--eco-green);
  background: linear-gradient(145deg, var(--eco-green-light), var(--eco-white));
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--eco-green-dark);
}

/* Team Cards */
.team-card {
  text-align: center;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.team-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Reviews/Testimonials */
.review-card {
  border: none;
  border-radius: 15px;
  padding: 2rem;
  background: var(--eco-light-gray);
  height: 100%;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 600;
  color: var(--earth-brown-dark);
}

/* FAQ Cards */
.faq-card {
  border: none;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
  font-weight: 600;
  color: var(--eco-green-dark);
  margin-bottom: 0.68rem;
}

.faq-answer {
  color: var(--eco-dark-gray);
}

/* Gallery */
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}

/* Contact Form */
.contact-form {
  background: var(--eco-light-gray);
  border-radius: 15px;
  padding: 3rem;
}

.form-control {
  border: 2px solid var(--eco-gray);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--eco-green);
  box-shadow: 0 0 0 0.2rem rgba(116, 164, 97, 0.25);
}

/* Buttons */
.btn-primary {
  background-color: var(--eco-green);
  border-color: var(--eco-green);
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--eco-green-dark);
  border-color: var(--eco-green-dark);
  transform: translateY(-2px);
}

.btn-outline-primary {
  color: var(--eco-green);
  border-color: var(--eco-green);
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background-color: var(--eco-green);
  border-color: var(--eco-green);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--eco-charcoal) 0%, var(--earth-brown-dark) 100%);
  color: var(--eco-white);
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--eco-light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--eco-green-light);
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Animation Utilities */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Utility Classes */
.text-eco-green { color: var(--eco-green); }
.text-earth-brown { color: var(--earth-brown); }
.text-leaf-sage { color: var(--leaf-sage); }
.text-sky-blue { color: var(--sky-blue); }
.text-warm-coral { color: var(--warm-coral); }

.bg-eco-green { background-color: var(--eco-green); }
.bg-earth-brown { background-color: var(--earth-brown); }
.bg-leaf-sage { background-color: var(--leaf-sage); }
.bg-sky-blue { background-color: var(--sky-blue); }
.bg-warm-coral { background-color: var(--warm-coral); } 


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
