/*
 * Solar-Powered Phone-Charging Kiosks Template
 * Main CSS - Bootstrap 5 Compatible
 * No Bootstrap overrides, custom grid systems, or duplicated classes
 */

/* Import Bootstrap 5 from CDN */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Import FontAwesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Color Variables - Solar Theme Palette */
:root {
  /* Primary Colors - Solar Theme */
  --primary-solar: #ffdd00;
  --primary-solar-light: #edff4a;
  --primary-solar-dark: #ce8d0e;
  
  --secondary-green: #34b433;
  --secondary-green-light: #99eaa4;
  --secondary-green-dark: #1a9228;
  
  --accent-blue: #96edfa;
  --accent-blue-light: #e9f7ff;
  --accent-blue-dark: #5885bf;
  
  --neutral-gray: #F5F5F5;
  --neutral-gray-light: #FAFAFA;
  --neutral-gray-dark: #d8cdcd;
  
  --energy-orange: #f67800;
  --energy-orange-light: #ffddbe;
  --energy-orange-dark: #ffa418;
  
  /* Text Colors */
  --text-primary: #3a5060;
  --text-secondary: #6b7f81;
  --text-light: #FFFFFF;
  
  /* Background Colors */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F9FA;
  --bg-accent: #ffffff;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
}

/* Conservative Typography */
h1 {
  font-size: 2.59rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.93rem;
}

h3 {
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.81rem;
}

h4 {
  font-size: 1.33rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.62rem;
}

p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Conservative Navbar Brand */
.navbar-brand {
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--primary-solar-dark);
}

/* Section Spacing */
.section {
  padding: 4rem 0;
}

.section-alt {
  background-color: var(--bg-secondary);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-solar-light) 0%, var(--energy-orange-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  z-index: 2;
    padding-top: 250px;
}

.hero-image {
  z-index: 1;
}

/* Decorative Elements */
.decorative-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: var(--secondary-green);
  top: 10%;
  right: 10%;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: var(--accent-blue);
  bottom: 20%;
  left: 5%;
}

/* Service Cards */
.service-card {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-13px);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-solar-dark);
}

/* Feature Cards */
.feature-card {
  background: var(--bg-accent);
  border-radius: 13px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid var(--secondary-green-light);
}

.feature-icon {
  font-size: 3rem;
  color: var(--secondary-green);
  margin-bottom: 1rem;
}

/* Price Plan Cards */
.price-card {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border: 3px solid var(--primary-solar);
}

.price-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--primary-solar);
  color: var(--text-primary);
  padding: 5px 40px;
  font-size: 0.92rem;
  font-weight: 600;
  transform: rotate(45deg);
}

/* Team Cards */
.team-card {
  background: var(--bg-primary);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--neutral-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-secondary);
}

/* Review Cards */
.review-card {
  background: var(--bg-primary);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-solar);
}

/* Case Study Cards */
.case-study-card {
  background: var(--bg-secondary);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid var(--neutral-gray-dark);
}

/* Process Steps */
.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-solar);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.57rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--secondary-green);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 9px;
  top: 20px;
  width: 2px;
  height: calc(100% + 1rem);
  background: var(--secondary-green-light);
}

.timeline-item:last-child::after {
  display: none;
}

/* Career Cards */
.career-card {
  background: var(--bg-primary);
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid var(--neutral-gray-dark);
}

/* Core Info Cards */
.core-info-card {
  background: var(--bg-accent);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid var(--accent-blue-light);
}

.core-info-icon {
  font-size: 2.57rem;
  color: var(--accent-blue-dark);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  background: var(--bg-primary);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 8px;
  border: 2px solid var(--neutral-gray-dark);
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-solar);
  box-shadow: 0 0 0 0.2rem rgba(244, 183, 0, 0.25);
}

.btn-primary {
  background: var(--primary-solar);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary-solar-dark);
  transform: translateY(-2px);
}

/* Contact Info */
.contact-info {
  background: var(--bg-secondary);
  border-radius: 15px;
  padding: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-solar);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--text-primary);
}

/* Blog Cards */
.blog-card {
  background: var(--bg-primary);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  background: var(--neutral-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.blog-content {
  padding: 1.5rem;
}

/* FAQ Cards */
.faq-card {
  background: var(--bg-primary);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1rem;
  border: 1px solid var(--neutral-gray-dark);
}

.faq-question {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--text-secondary);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  width: 100%;
  height: 200px;
  background: var(--neutral-gray);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 3rem;
}

/* Footer */
.footer {
  background: var(--text-primary);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-solar);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-solar);
}

/* Animations - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .fade-in.active {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
  }
}

/* Utility Classes */
.text-solar {
  color: var(--primary-solar-dark);
}

.text-green {
  color: var(--secondary-green);
}

.bg-solar {
  background-color: var(--primary-solar-light);
}

.bg-green {
  background-color: var(--secondary-green-light);
}

.bg-accent {
  background-color: var(--bg-accent);
}

/* Breadcrumbs */
.breadcrumb-nav {
  background: var(--bg-secondary);
  padding: 1rem 0;
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  background: var(--neutral-gray);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
