/* EcoDesign Studio - Main CSS */
/* Color Palette Variables */
:root {
  /* Primary Colors */
  --eco-green: #4a7c59;
  --sage-green: #87a96b;
  --earth-brown: #8b7355;
  --natural-beige: #d4c5b9;
  --soft-cream: #f5f1eb;
  
  /* Light/Dark Shades */
  --eco-green-light: #6b9a7a;
  --eco-green-dark: #2d4a35;
  --sage-green-light: #a3c087;
  --sage-green-dark: #6b8549;
  --earth-brown-light: #a68d77;
  --earth-brown-dark: #695a44;
  --natural-beige-light: #e2d7cd;
  --natural-beige-dark: #c0b0a1;
  --soft-cream-light: #faf8f4;
  --soft-cream-dark: #e8e0d5;
  
  /* Additional Colors */
  --text-dark: #2c3e2d;
  --text-light: #6a7c6b;
  --accent-gold: #d4af37;
  --pure-white: #ffffff;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* Header Styles */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--eco-green) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--soft-cream) 0%, var(--natural-beige-light) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.shape-blob-1 {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: var(--sage-green-light);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape-blob-2 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: var(--eco-green-light);
  border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
  opacity: 0.1;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Card Styles */
.feature-card,
.service-card,
.price-card,
.review-card,
.case-study-card,
.faq-card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.feature-card:hover,
.service-card:hover,
.price-card:hover,
.review-card:hover,
.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Service Cards */
.service-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

/* Price Cards */
.price-card {
  position: relative;
}

.price-card.border-primary {
  border: 2px solid var(--eco-green) !important;
}

.price-card .card-body {
  padding: 2rem;
}

/* Team Section */
.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 3px solid var(--natural-beige);
}

/* Process Section */
.process-step {
  position: relative;
}

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

/* Gallery Section */
.gallery img {
  transition: transform 0.3s ease;
  border-radius: 8px;
}

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

/* Contact Form */
.contact-form {
  background: var(--soft-cream);
  padding: 2rem;
  border-radius: 12px;
}

.contact-info {
  padding: 2rem;
}

.contact-item {
  text-align: center;
}

.contact-item i {
  display: block;
  margin-bottom: 1rem;
}

/* Button Styles */
.btn-success {
  background-color: var(--eco-green);
  border-color: var(--eco-green);
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: var(--eco-green-dark);
  border-color: var(--eco-green-dark);
  transform: translateY(-2px);
}

.btn-outline-success {
  color: var(--eco-green);
  border-color: var(--eco-green);
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-success:hover {
  background-color: var(--eco-green);
  border-color: var(--eco-green);
  transform: translateY(-2px);
}

/* Footer Styles */
footer {
  background-color: var(--text-dark) !important;
}

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

footer a {
  color: var(--natural-beige-light) !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--sage-green-light) !important;
}

/* Breadcrumb */
.breadcrumb-nav {
  border-bottom: 1px solid var(--natural-beige);
}

.breadcrumb-icon {
  height: 24px;
  width: auto;
}

/* Additional Page Styles */
.project-card,
.residential-card,
.commercial-card,
.award-card,
.testimonial-card,
.blog-intro-card,
.featured-article,
.blog-post,
.tip-card,
.newsletter-benefit {
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
}

.project-card:hover,
.residential-card:hover,
.commercial-card:hover,
.featured-article:hover,
.blog-post:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.project-card .card-img-top,
.residential-card .card-img-top,
.commercial-card .card-img-top,
.featured-article .card-img-top,
.blog-post .card-img-top {
  height: 200px;
  object-fit: cover;
}

/* Newsletter Signup */
.newsletter-signup {
  background: var(--soft-cream) !important;
  border: 1px solid var(--natural-beige);
}

/* Utility Classes */
.bg-eco-green { background-color: var(--eco-green) !important; }
.bg-sage-green { background-color: var(--sage-green) !important; }
.bg-earth-brown { background-color: var(--earth-brown) !important; }
.bg-natural-beige { background-color: var(--natural-beige) !important; }
.bg-soft-cream { background-color: var(--soft-cream) !important; }

.text-eco-green { color: var(--eco-green) !important; }
.text-sage-green { color: var(--sage-green) !important; }
.text-earth-brown { color: var(--earth-brown) !important; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--text-dark);
}

.display-4 {
  font-size: 2.5rem;
}

.h2 {
  font-size: 2rem;
}

.h3 {
  font-size: 1.75rem;
}

.h4 {
  font-size: 1.5rem;
}

.h5 {
  font-size: 1.25rem;
}

.h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-light);
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Form Elements */
.form-control {
  border: 2px solid var(--natural-beige);
  border-radius: 8px;
  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(74, 124, 89, 0.25);
}

.form-check-input:checked {
  background-color: var(--eco-green);
  border-color: var(--eco-green);
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Print Styles */
@media print {
  .navbar,
  .breadcrumb-nav,
  footer,
  .btn {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
} 

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


/* Team Social Links - Neon Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

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

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.7;
}

.social-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
    box-shadow: 0 0 20px currentColor;
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

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

.x-link i {
    display: none;
}

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