/* Solar-Powered Outdoor Advertising Displays Template - Main Styles */

:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --solar-primary: #2E86C1;    /* Solar Blue */
  --solar-secondary: #F39C12;  /* Solar Orange */
  --solar-accent: #28B463;     /* Solar Green */
  --solar-neutral: #5D6D7E;    /* Slate Gray */
  --solar-highlight: #E74C3C;  /* Energy Red */
  
  /* Light Shades */
  --solar-primary-light: #AED6F1;
  --solar-secondary-light: #FCF3CF;
  --solar-accent-light: #ABEBC6;
  --solar-neutral-light: #D5DBDB;
  --solar-highlight-light: #FADBD8;
  
  /* Dark Shades */
  --solar-primary-dark: #1B4F72;
  --solar-secondary-dark: #B7950B;
  --solar-accent-dark: #1E8449;
  --solar-neutral-dark: #2C3E50;
  --solar-highlight-dark: #922B21;
  
  /* Typography */
  --font-base: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-weight-normal: 400;
  --font-weight-bold: 600;
  
  /* Conservative Font Sizes */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-h6: 1rem;
  --font-size-h5: 1.125rem;
  --font-size-h4: 1.25rem;
  --font-size-h3: 1.375rem;
  --font-size-h2: 1.5rem;
  --font-size-h1: 1.75rem;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --element-margin: 1.5rem;
}

/* Global Styles */
body {
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--solar-neutral-dark);
  background-color: #ffffff;
}

/* Conservative Typography */
h1 { font-size: var(--font-size-h1); font-weight: var(--font-weight-bold); }
h2 { font-size: var(--font-size-h2); font-weight: var(--font-weight-bold); }
h3 { font-size: var(--font-size-h3); font-weight: var(--font-weight-bold); }
h4 { font-size: var(--font-size-h4); font-weight: var(--font-weight-bold); }
h5 { font-size: var(--font-size-h5); font-weight: var(--font-weight-bold); }
h6 { font-size: var(--font-size-h6); font-weight: var(--font-weight-bold); }

p {
  font-size: var(--font-size-base);
  margin-bottom: var(--element-margin);
}

/* Navbar Brand Conservative Size */
.navbar-brand {
  font-size: var(--font-size-lg) !important;
  font-weight: var(--font-weight-bold);
  color: var(--solar-primary);
}

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

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

/* Decorative Shapes */
.hero-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--solar-secondary);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: var(--solar-accent);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 1;
}

/* Section Styling */
.section {
  padding: var(--section-padding);
}

.section-title {
  color: var(--solar-primary-dark);
  margin-bottom: var(--element-margin);
}

.section-subtitle {
  color: var(--solar-neutral);
  font-size: var(--font-size-lg);
  margin-bottom: calc(var(--element-margin) * 1.5);
}

/* Services Cards */
.service-card {
  background: #ffffff;
  border: 1px solid var(--solar-neutral-light);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.service-price {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--solar-secondary);
}

/* Team Cards */
.team-card {
  background: #ffffff;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

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

/* Review Cards */
.review-card {
  background: var(--solar-primary-light);
  border: none;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  height: 100%;
}

/* Feature Cards */
.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--solar-neutral-light);
  height: 100%;
}

.feature-icon {
  font-size: 3rem;
  color: var(--solar-primary);
  margin-bottom: 1rem;
}

/* Price Plan Cards */
.price-card {
  background: #ffffff;
  border: 2px solid var(--solar-neutral-light);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: border-color 0.3s ease;
}

.price-card.featured {
  border-color: var(--solar-secondary);
}

.price-card:hover {
  border-color: var(--solar-primary);
}

/* FAQ Cards */
.faq-card {
  background: #ffffff;
  border: 1px solid var(--solar-neutral-light);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: var(--font-weight-bold);
  color: var(--solar-primary-dark);
  margin-bottom: 0.5rem;
}

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

.form-control {
  border: 1px solid var(--solar-neutral-light);
  border-radius: 4px;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--solar-primary);
  box-shadow: 0 0 0 0.2rem rgba(46, 134, 193, 0.25);
}

/* Buttons */
.btn-solar-primary {
  background-color: var(--solar-primary);
  border-color: var(--solar-primary);
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: var(--font-weight-bold);
}

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

.btn-solar-secondary {
  background-color: var(--solar-secondary);
  border-color: var(--solar-secondary);
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: var(--font-weight-bold);
}

.btn-solar-secondary:hover {
  background-color: var(--solar-secondary-dark);
  border-color: var(--solar-secondary-dark);
  color: #ffffff;
}

/* Footer */
.footer {
  background: var(--solar-neutral-dark);
  color: #ffffff;
  padding: 3rem 0 2rem;
}

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

.footer a {
  color: var(--solar-neutral-light);
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff;
}

/* Gallery */
.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

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

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

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

/* Blog Cards */
.blog-card {
  background: #ffffff;
  border: 1px solid var(--solar-neutral-light);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 100%;
}

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

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--solar-primary);
  border-radius: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 12px;
  width: 2px;
  height: calc(100% + 1rem);
  background: var(--solar-neutral-light);
}

.timeline-item:last-child::after {
  display: none;
}

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

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

/* Case Study Cards */
.casestudy-card {
  background: var(--solar-accent-light);
  border: none;
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
}

/* Core Info Cards */
.coreinfo-card {
  background: #ffffff;
  border: 1px solid var(--solar-neutral-light);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--solar-secondary);
  margin-bottom: 1rem;
}

/* Space Page */
#space {
  min-height: 70vh;
  background: var(--solar-neutral-light);
  border-radius: 8px;
  margin: 2rem 0;
} 


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

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

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

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

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

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