/* ===============================================
   HYDROPONIC GARDEN KIT - MAIN CSS
   =============================================== */

/* Bootstrap 5 CDN Import */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');

/* FontAwesome CDN Import */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ===============================================
   COLOR PALETTE - 5 PRIMARY COLORS + SHADES
   =============================================== */
:root {
  /* Primary Colors */
  --primary-green: #4CAF50;
  --primary-mint: #00BCD4;
  --primary-sage: #8BC34A;
  --primary-teal: #009688;
  --primary-lime: #CDDC39;
  
  /* Light Shades */
  --light-green: #C8E6C9;
  --light-mint: #B2EBF2;
  --light-sage: #DCEDC8;
  --light-teal: #B2DFDB;
  --light-lime: #F0F4C3;
  
  /* Dark Shades */
  --dark-green: #2E7D32;
  --dark-mint: #00838F;
  --dark-sage: #558B2F;
  --dark-teal: #00695C;
  --dark-lime: #827717;
  
  /* Supporting Colors */
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --gray: #9E9E9E;
  --dark-gray: #424242;
  --black: #212121;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-mint) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--primary-sage) 0%, var(--primary-teal) 100%);
  --gradient-accent: linear-gradient(135deg, var(--primary-lime) 0%, var(--primary-sage) 100%);
  --gradient-hero: linear-gradient(135deg, var(--light-green) 0%, var(--light-mint) 50%, var(--light-sage) 100%);
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
  --font-size-base: 1rem;
  --line-height-base: 1.6;
}

/* ===============================================
   GLOBAL STYLES
   =============================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===============================================
   TYPOGRAPHY
   =============================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  color: var(--dark-green);
}

h2 {
  font-size: 2rem;
  color: var(--dark-teal);
}

h3 {
  font-size: 1.5rem;
  color: var(--dark-sage);
}

h4 {
  font-size: 1.25rem;
  color: var(--dark-mint);
}

h5 {
  font-size: 1.125rem;
  color: var(--dark-lime);
}

h6 {
  font-size: 1rem;
  color: var(--dark-gray);
}

p {
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

/* ===============================================
   HEADER & NAVIGATION
   =============================================== */
.navbar {
  background: var(--gradient-primary);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: rgba(76, 175, 80, 0.95);
  backdrop-filter: blur(10px);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.navbar-brand:hover,
.navbar-brand:focus {
  color: var(--light-green);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--white);
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--light-green);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===============================================
   HERO SECTION
   =============================================== */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--dark-green);
    padding-top: 150px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--dark-teal);
}

.hero-desc {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: var(--dark-gray);
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* ===============================================
   SECTIONS
   =============================================== */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--primary-teal);
}

.section-desc {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.125rem;
  color: var(--dark-gray);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===============================================
   SERVICES SECTION
   =============================================== */
.services {
  background: var(--light-gray);
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.service-card h4 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.25rem 0;
  color: var(--dark-gray);
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-green);
  margin-right: 0.5rem;
}

/* ===============================================
   ABOUT SECTION
   =============================================== */
.about {
  background: var(--white);
}

.feature-item {
  text-align: center;
  margin-bottom: 2rem;
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-mint);
  margin-bottom: 1rem;
}

.feature-item h5 {
  color: var(--dark-green);
  margin-bottom: 1rem;
}

.feature-item p {
  color: var(--dark-gray);
}

/* ===============================================
   TEAM SECTION
   =============================================== */
.team {
  background: var(--light-sage);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.team-member h5 {
  color: var(--dark-green);
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--primary-teal);
  font-weight: 500;
}

/* ===============================================
   REVIEWS SECTION
   =============================================== */
.reviews {
  background: var(--white);
}

.review-card {
  background: var(--light-green);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.review-card p {
  font-style: italic;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.review-card h6 {
  color: var(--dark-green);
  font-weight: 600;
}

/* ===============================================
   FAQ SECTION
   =============================================== */
.faq {
  background: var(--light-gray);
}

.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  background: var(--gradient-secondary);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--gradient-primary);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--dark-gray);
  border-top: 1px solid var(--light-gray);
  display: none;
  transition: all 0.3s ease;
}

.faq-question.active + .faq-answer {
  display: block;
}

.faq-question::after {
  content: '+';
  float: right;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

/* ===============================================
   CONTACT SECTION
   =============================================== */
.contact {
  background: var(--gradient-hero);
  color: var(--dark-green);
}

.contact-form {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

.form-label {
  font-weight: 500;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-info {
  margin-top: 2rem;
}

.contact-info p {
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.contact-info i {
  color: var(--primary-green);
  margin-right: 0.5rem;
  width: 20px;
}

/* ===============================================
   ADDITIONAL SECTIONS STYLING
   =============================================== */
.features {
  background: var(--light-gray);
}

.priceplan {
  background: var(--white);
}

.casestudy {
  background: var(--light-gray);
}

.process {
  background: var(--white);
}

.timeline {
  background: var(--light-mint);
}

.career {
  background: var(--white);
}

.coreinfo {
  background: var(--light-gray);
}

/* ===============================================
   BLOG SECTION
   =============================================== */
.blog {
  background: var(--light-gray);
}

/* ===============================================
   GALLERY SECTION
   =============================================== */
.gallery {
  background: var(--white);
}

.gallery-item {
  margin-bottom: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* ===============================================
   FOOTER
   =============================================== */
.footer {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer p {
  color: var(--light-green);
  margin-bottom: 0.5rem;
}

.footer a {
  color: var(--light-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* ===============================================
   BREADCRUMBS
   =============================================== */
.breadcrumb-section {
  background: var(--light-gray);
  padding: 1rem 0;
}

.breadcrumb-img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 5px;
}

/* ===============================================
   SPACE PAGE
   =============================================== */
#space {
  min-height: 70vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  margin: 2rem 0;
}

/* ===============================================
   LOADING BAR
   =============================================== */
#nanobar-placeholder {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 9999;
}

/* ===============================================
   UTILITIES
   =============================================== */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

.bg-gradient-accent {
  background: var(--gradient-accent);
}

.shadow-custom {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.border-radius-custom {
  border-radius: 15px;
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero {
    min-height: 80vh;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-member img {
    width: 150px;
    height: 150px;
  }
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
