:root {
  /* Smart Irrigation Color Palette - Pastel High Contrast */
  --primary-green: #4CAF50;
  --primary-blue: #2196F3;
  --primary-orange: #FF9800;
  --primary-teal: #009688;
  --primary-brown: #8D6E63;
  
  /* Light/Dark Shades */
  --light-green: #C8E6C9;
  --dark-green: #2E7D32;
  --light-blue: #BBDEFB;
  --dark-blue: #1565C0;
  --light-orange: #FFE0B2;
  --dark-orange: #E65100;
  --light-teal: #B2DFDB;
  --dark-teal: #00695C;
  --light-brown: #D7CCC8;
  --dark-brown: #5D4037;
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --line-height-base: 1.5;
}

/* Global Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: var(--line-height-base);
  color: #333;
  background-color: #fff;
    overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-green);
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

/* Section Spacing */
section {
  padding: 4rem 0;
}

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--light-green) 0%, var(--light-blue) 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: var(--light-teal);
  border-radius: 50%;
  opacity: 0.1;
  transform: rotate(15deg);
}

/* Services Section */
#services {
  background-color: #f8f9fa;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  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 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

/* Features Section */
#features {
  background-color: white;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

/* Team Section */
#team {
  background-color: var(--light-green);
}

.team-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background-color: var(--light-teal);
}

/* Reviews Section */
#reviews {
  background-color: #f8f9fa;
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  height: 100%;
}

/* FAQ Section */
#faq {
  background-color: white;
}

.faq-card {
  background: var(--light-blue);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-blue);
}

.faq-question {
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: #555;
  margin-bottom: 0;
}

/* Contact Form */
#contacts {
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-blue) 100%);
  color: white;
}

.form-control {
  border-radius: 10px;
  border: none;
  padding: 0.75rem 1rem;
}

.btn-primary {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--dark-orange);
  border-color: var(--dark-orange);
}

/* Footer */
#footer {
  background-color: var(--dark-green);
  color: white;
  padding: 3rem 0 1rem;
}

#footer a {
  color: var(--light-green);
  text-decoration: none;
}

#footer a:hover {
  color: white;
}

/* Gallery */
#gallery {
  background-color: #f8f9fa;
}

.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 img:hover {
  transform: scale(1.05);
}

/* Process Section */
#process {
  background-color: white;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Case Studies */
#casestudy {
  background-color: var(--light-orange);
}

.case-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
}

/* Price Plans */
#priceplan {
  background-color: #f8f9fa;
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
  height: 100%;
  position: relative;
}

.price-card.featured {
  border: 3px solid var(--primary-green);
  transform: scale(1.05);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

/* Blog Section */
#blog {
  background-color: white;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: var(--light-teal);
}

/* Responsive Design - Respects prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Utility Classes */
.text-primary-green { color: var(--primary-green); }
.text-primary-blue { color: var(--primary-blue); }
.text-primary-orange { color: var(--primary-orange); }
.text-primary-teal { color: var(--primary-teal); }
.text-primary-brown { color: var(--primary-brown); }

.bg-primary-green { background-color: var(--primary-green); }
.bg-primary-blue { background-color: var(--primary-blue); }
.bg-primary-orange { background-color: var(--primary-orange); }
.bg-primary-teal { background-color: var(--primary-teal); }
.bg-primary-brown { background-color: var(--primary-brown); }

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
} 


/* 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);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f77737, #fcaf45, #ffdc80);
}

.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;
    }
}
