/* Solar Power Kiosk Template - Main CSS */
/* Conservative, minimalist design with Bootstrap 5 integration */

:root {
  /* 5 Primary Colors + Light/Dark Shades */
  --solar-gold: #f7b32b;
  --solar-gold-light: #ffd365;
  --solar-gold-dark: #e09512;
  
  --eco-green: #22c55e;
  --eco-green-light: #4ade80;
  --eco-green-dark: #16a34a;
  
  --sky-blue: #0ea5e9;
  --sky-blue-light: #38bdf8;
  --sky-blue-dark: #0284c7;
  
  --energy-orange: #f97316;
  --energy-orange-light: #fb923c;
  --energy-orange-dark: #ea580c;
  
  --tech-purple: #8b5cf6;
  --tech-purple-light: #a78bfa;
  --tech-purple-dark: #7c3aed;
  
  /* Conservative Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
}

/* Global Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #374151;
}

/* Conservative Navbar Brand */
.navbar-brand {
  font-size: var(--font-size-xl) !important;
  font-weight: 600;
  color: var(--solar-gold-dark);
}

/* Conservative Headings */
h1 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: #1f2937;
}

h2 {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: #374151;
}

h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: #4b5563;
}

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

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

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

.hero-decorative {
  position: absolute;
  background: var(--eco-green);
  border-radius: 50%;
  opacity: 0.1;
}

.hero-blob-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 15%;
}

.hero-blob-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 10%;
  background: var(--energy-orange);
}

/* Services Grid */
.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--solar-gold-dark);
}

/* Features Section */
.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--eco-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

/* Price Plan Cards */
.price-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.price-card.featured {
  border-color: var(--solar-gold);
  transform: scale(1.05);
}

.price-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--solar-gold-dark);
}

/* Team Section */
.team-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.team-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Reviews Section - Static Cards Only */
.review-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--eco-green);
  height: 100%;
}

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

/* Case Studies */
.case-study-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--sky-blue);
}

/* Process Timeline */
.process-step {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: relative;
}

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

/* FAQ Section - Static Cards Only */
.faq-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--tech-purple);
}

.faq-question {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: #6b7280;
  margin: 0;
}

/* Contact Form */
.contact-form {
  background: #ffffff;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.contact-info-card {
  background: var(--sky-blue);
  color: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

/* Footer */
.footer-section {
  background: #1f2937;
  color: #e5e7eb;
  padding: 3rem 0 1rem;
}

.footer-section h5 {
  color: var(--solar-gold);
  margin-bottom: 1rem;
}

.footer-link {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--solar-gold);
}

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

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

/* Blog Section */
.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

/* Buttons */
.btn-solar {
  background: var(--solar-gold);
  border: none;
  color: #1f2937;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-solar:hover {
  background: var(--solar-gold-dark);
  color: white;
  transform: translateY(-2px);
}

.btn-eco {
  background: var(--eco-green);
  border: none;
  color: white;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

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

/* Timeline Events */
.timeline-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: relative;
  border-left: 4px solid var(--energy-orange);
}

/* Career Cards */
.career-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--tech-purple);
}

/* Core Info Cards */
.coreinfo-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-bottom: 4px solid var(--sky-blue);
}

/* Utility Classes */
.text-solar {
  color: var(--solar-gold-dark);
}

.text-eco {
  color: var(--eco-green-dark);
}

.bg-light-solar {
  background-color: rgba(247, 179, 43, 0.1);
}

.section-padding {
  padding: 4rem 0;
}


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

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

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

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

.x-link {
    position: relative;
}

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

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

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

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