/* Vertical Farming Design Consultancy - Main Styles */

:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-green: #7fb069;
  --primary-blue: #5ba3d0;
  --primary-orange: #f4a460;
  --primary-purple: #9b7bb8;
  --primary-yellow: #f9e784;
  
  /* Light/Dark Shades */
  --light-green: #b8d4a7;
  --dark-green: #4a6741;
  --light-blue: #a2c8e6;
  --dark-blue: #2e5984;
  --light-orange: #f7c794;
  --dark-orange: #d4762a;
  --light-purple: #c4a8d1;
  --dark-purple: #6b4c75;
  --light-yellow: #fdf2c4;
  --dark-yellow: #e6d055;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --black: #212529;
}

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

/* Conservative Typography */
.navbar-brand {
  font-size: 1.1rem;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-green);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark-blue);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

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

.hero-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--primary-orange);
  border-radius: 50%;
  top: -150px;
  right: -150px;
  opacity: 0.3;
}

.hero-section::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--primary-purple);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
  opacity: 0.3;
}

/* Header */
.navbar {
  background-color: var(--white) !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
  color: var(--primary-green) !important;
}

.navbar-nav .nav-link {
  color: var(--dark-gray) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green) !important;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--light-gray);
}

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

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-card .card-header {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  border: none;
  color: var(--white);
  padding: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-orange);
}

/* Team Cards */
.team-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

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

/* Review Cards */
.review-card {
  background: var(--white);
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 2rem;
  height: 100%;
}

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

.faq-question {
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--gray);
}

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

.form-control {
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 12px 15px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(127, 176, 105, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--dark-green), var(--dark-blue));
}

/* Footer */
.footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 60px 0 20px;
}

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

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

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

/* Gallery */
.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

/* Price Plan Cards */
.price-card {
  background: var(--white);
  border: 2px solid var(--light-blue);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-green);
}

.price-card.featured {
  border-color: var(--primary-orange);
  background: linear-gradient(135deg, var(--light-orange), var(--light-yellow));
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline */
.timeline-item {
  background: var(--white);
  border-left: 4px solid var(--primary-blue);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Career Cards */
.career-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  transition: border-color 0.3s ease;
}

.career-card:hover {
  border-color: var(--primary-green);
}

/* Core Info Cards */
.coreinfo-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
}

/* Blog Cards */
.blog-card {
  background: var(--white);
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease;
}

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

/* Case Study Cards */
.casestudy-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
}

/* Utilities */
.text-primary-green {
  color: var(--primary-green);
}

.text-primary-blue {
  color: var(--primary-blue);
}

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

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

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

/* Space Page */
#space {
  min-height: 70vh;
  background: linear-gradient(135deg, var(--light-green) 0%, var(--light-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  margin: 2rem 0;
}

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


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

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

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

.instagram-link:hover {
    background: #d62976;
    border-color: #d62976;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
