/* Renewable Energy Certificate Brokerage - Main Styles */

/* Bootstrap 5 CDN Integration */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Color Variables - Pastel High-Contrast Palette */
:root {
  --primary-green: #419352;
  --secondary-blue: #2688be;
  --accent-yellow: #f56f0f;
  --neutral-gray: #384a51;
  --light-mint: #edf8ee;
  --dark-forest: #134e15;
  --soft-blue: #cff1ff;
  --warm-cream: #eee3bf;
  --charcoal: #283138;
  --pure-white: #FFFFFF;
}

/* Base Typography */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--pure-white);
}

/* Conservative Header Sizing */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-green);
}

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

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

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--neutral-gray);
}

p {
  font-size: 1rem;
  color: var(--neutral-gray);
  margin-bottom: 1rem;
}

/* Header Navigation */
.navbar {
  background-color: var(--pure-white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

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

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--light-mint) 0%, var(--soft-blue) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
}

.hero-content {
  z-index: 2;
    padding-top: 200px;
}

.hero-image {
  position: relative;
}

/* Decorative Shapes */
.decorative-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background-color: var(--primary-green);
  top: -50px;
  right: -50px;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background-color: var(--accent-yellow);
  bottom: -30px;
  left: -30px;
}

/* Section Spacing */
.section {
  padding: 5rem 0;
}

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

/* Services Cards */
.service-card {
  background: var(--pure-white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.service-icon {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-yellow);
  margin-top: 1rem;
}

/* Features Section */
.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--pure-white);
  font-size: 2rem;
}

/* Price Plan Cards */
.price-card {
  background: var(--pure-white);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  position: relative;
  height: 100%;
}

.price-card.featured {
  border: 3px solid var(--primary-green);
  transform: scale(1.05);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-green);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-mint);
}

/* Team Section */
.team-card {
  background: var(--pure-white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  height: 100%;
}

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

/* Reviews Section */
.review-card {
  background: var(--pure-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  height: 100%;
}

.review-stars {
  color: var(--accent-yellow);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* FAQ Section */
.faq-card {
  background: var(--pure-white);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

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

/* Contact Form */
.contact-form {
  background: var(--light-mint);
  padding: 3rem;
  border-radius: 16px;
}

.form-control {
  border: 2px solid var(--soft-blue);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

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

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
}

.btn-primary:hover {
  background-color: var(--dark-forest);
  border-color: var(--dark-forest);
}

/* Footer */
.footer {
  background-color: var(--charcoal);
  color: var(--pure-white);
  padding: 3rem 0 1rem;
}

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

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

.footer a:hover {
  color: var(--light-mint);
}

.footer-bottom {
  border-top: 1px solid var(--neutral-gray);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Blog Section */
.blog-card {
  background: var(--pure-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  height: 100%;
}

.blog-content {
  padding: 1.5rem;
}

/* Process/Timeline Steps */
.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

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

/* Breadcrumbs */
.breadcrumb-container {
  background: var(--light-mint);
  padding: 1rem 0;
}

.breadcrumb-image {
  width: 24px;
  height: 24px;
}

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

/* Utilities */
.text-primary-green { color: var(--primary-green); }
.text-secondary-blue { color: var(--secondary-blue); }
.text-accent-yellow { color: var(--accent-yellow); }
.bg-light-mint { background-color: var(--light-mint); }
.bg-soft-blue { background-color: var(--soft-blue); }
.bg-warm-cream { background-color: var(--warm-cream); } 


/* 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;
    }
}
