/* ===== ROOT VARIABLES ===== */
:root {
  --primary-color: #fdb813;
  --secondary-color: #ff6b35;
  --accent-color: #04a777;
  --dark-bg: #0f1419;
  --light-bg: #f5f7fa;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --gray-light: #e8e8e8;
  --gray-medium: #999999;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-bg);
  overflow-x: hidden;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.navbar {
  background-color: var(--text-light);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}


.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  font-size: 28px;
  animation: sunRotate 20s linear infinite;
}

/* @keyframes sunRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
} */

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  font-size: 15px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  transition: all 0.3s ease;
  border-radius: 3px;
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .nav-menu {
    position: absolute;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--text-light);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow);
    padding: 20px 0;
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-light);
  }

  .nav-link::after {
    display: none;
  }
}

/* ===== HERO SECTION ===== */
.hero {
 min-height: 600px;
  background:
    url("./assects/HERO.jpg") center/cover no-repeat,
    linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff; /* force strong contrast */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 20px;
  overflow: hidden;
  position: relative ;
  background-attachment: fixed;

}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    /* darkening layer */
    linear-gradient(
      120deg,
      rgba(0, 0, 0, 0.0) 0%,
      rgba(0, 0, 0, 0.0) 40%,
      rgba(0, 0, 0, 0) 100%
    ),
    radial-gradient(circle at 20% 50%, rgba(253, 184, 19, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(4, 167, 119, 0.15) 0%, transparent 50%);

  pointer-events: none;
  z-index: 1;
}

.hero-content,
.solar-animation {
  z-index: 2;
}

.hero-content {
  flex: 1;
  z-index: 2;
  animation: slideInLeft 0.8s ease;

  max-width: 5400px;
  padding: 24px 28px;
  background: rgba(0, 0, 0, 0.55);  /* key to making text readable */
  border-radius: 16px;
  backdrop-filter: blur(4px);        /* optional but helps separate from busy images */
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.8;
  color: #f5f5f5;
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.solar-animation {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.sun {
  width: 200px;
  height: 200px;
  filter: drop-shadow(0 0 30px rgba(253, 184, 19, 0.5));
}

.rays {
  animation: rayPulse 3s ease-in-out infinite;
}

@keyframes rayPulse {
  0%,
  100% {
    stroke-width: 3;
    opacity: 1;
  }
  50% {
    stroke-width: 4;
    opacity: 0.8;
  }
}

/* ===== BUTTONS ===== */
.cta-button {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  border: none;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(253, 184, 19, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(253, 184, 19, 0.4);
}

.cta-button.large {
  padding: 18px 50px;
  font-size: 18px;
}

/* ===== SECTIONS ===== */
.features,
.products,
.blog,
.team-section,
.benefits-section,
.contact-form-section {
  padding: 80px 20px;
}

.features {
  background-color: var(--light-bg);
}

.products {
  background-color: var(--text-light);
}

.blog {
  background: linear-gradient(135deg, rgb(240, 147, 251) 0%, #f5576c 100%);
  color: var(--text-light);
}

/* ===== SECTION TITLE ===== */
.section-title {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 800;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--text-light);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(253, 184, 19, 0.15);
}

.feature-icon {
  font-size: 50px;
  margin-bottom: 20px;
  display: inline-block;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--gray-medium);
  font-size: 15px;
  line-height: 1.8;
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--text-light);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.product-image {
  font-size: 60px;
  margin-bottom: 20px;
}

.product-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.product-card p {
  margin-bottom: 20px;
  opacity: 0.95;
  font-size: 15px;
}

.price {
  display: block;
  font-size: 24px;
  font-weight: 800;
  margin-top: 20px;
}

/* ===== BLOG GRID ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 15px;
  color: var(--text-dark);
  transition: all 0.3s ease;
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  font-size: 50px;
  margin-bottom: 15px;
}

.blog-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.blog-date {
  color: var(--gray-medium);
  font-size: 13px;
  margin-bottom: 15px;
  display: block;
}

.blog-card p {
  color: var(--gray-medium);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* ===== STATS SECTION ===== */
.stats {
  background: linear-gradient(135deg, #04a777 0%, #667eea 100%);
  padding: 80px 20px;
  color: var(--text-light);
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 18px;
  opacity: 0.95;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, rgb(240, 147, 251) 0%, #f5576c 100%);
  color: var(--text-light);
  padding: 80px 20px;
  text-align: center;
}

.cta-section h2 {
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: 800;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 60px 20px 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-section p {
  color: var(--gray-light);
  line-height: 1.8;
  font-size: 14px;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: var(--gray-light);
  font-size: 14px;
}

/* ===== HERO SECTION (PAGES) ===== */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--text-light);
  padding: 100px 20px;
  text-align: center;
}

.hero-section h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
}

.hero-section p {
  font-size: 20px;
  opacity: 0.95;
}

/* ===== ABOUT PAGE STYLES ===== */
.story-section {
  padding: 80px 20px;
  background: var(--text-light);
}

.story-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.story-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-medium);
  margin-bottom: 20px;
}

.mvv-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mvv-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  color: var(--text-dark);
}

.mvv-icon {
  font-size: 50px;
  margin-bottom: 15px;
}

.mvv-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.mvv-card p {
  color: var(--gray-medium);
  line-height: 1.8;
}

.team-section {
  background: var(--light-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-member {
  background: var(--text-light);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.member-image {
  font-size: 70px;
  margin-bottom: 15px;
  display: block;
}

.team-member h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.member-role {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.member-bio {
  color: var(--gray-medium);
  font-size: 14px;
  line-height: 1.8;
}

.timeline-section {
  padding: 80px 20px;
  background: var(--text-light);
}

.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.timeline-item {
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
  margin-right: 50%;
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: left;
  margin-left: 50%;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--primary-color);
  border: 4px solid var(--text-light);
  border-radius: 50%;
  margin-top: 5px;
}

.timeline-content h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 800;
}

.timeline-content p {
  color: var(--gray-medium);
  font-size: 15px;
}

.certifications-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #04a777 0%, #667eea 100%);
  color: var(--text-light);
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.cert-item {
  background: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== CAREER PAGE STYLES ===== */
.career-intro {
  padding: 80px 20px;
  background: var(--text-light);
}
/* CSS */
.careers-coming-soon-banner {
  max-width: 900px;
  margin: 40px auto;
  padding: 18px 26px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f5576c, #1d4ed8);
  color: #f9fafb;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.careers-badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.careers-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}


.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.intro-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--text-light);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
}

.intro-icon {
  font-size: 50px;
  display: block;
  margin-bottom: 15px;
}

.intro-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.intro-card p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.95;
}

.jobs-section {
  padding: 80px 20px;
  background: var(--light-bg);
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.job-card {
  background: var(--text-light);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.job-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 15px;
  gap: 20px;
}

.job-card h3 {
  font-size: 24px;
  color: var(--text-dark);
}

.location {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.job-desc {
  color: var(--gray-medium);
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.8;
}

.job-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.job-type,
.job-salary {
  background: var(--light-bg);
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.apply-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(253, 184, 19, 0.3);
}

.benefits-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: var(--text-light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.25);
}

.benefit-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 15px;
}

.benefit-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.benefit-item p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.95;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-info-section {
  padding: 80px 20px;
  background: var(--light-bg);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.contact-info-card {
  background: var(--text-light);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.info-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 15px;
}

.contact-info-card h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.contact-info-card p {
  color: var(--text-dark);
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
}

.info-detail {
  color: var(--gray-medium);
  font-size: 14px;
  font-weight: 400;
}

.contact-form-section {
  background: var(--text-light);
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--light-bg);
  padding: 50px;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
}

.form-wrapper h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 15px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 15px;
  border: 2px solid var(--gray-light);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: var(--text-light);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(253, 184, 19, 0.2);
}

.form-group.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.form-group.checkbox input {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.form-group.checkbox label {
  margin-bottom: 0;
  cursor: pointer;
}

.form-wrapper button {
  margin-top: 10px;
}

.form-note {
  text-align: center;
  font-size: 14px;
  color: var(--gray-medium);
  margin-top: 10px;
}

.form-note.success {
  color: var(--accent-color);
}

.form-note.error {
  color: var(--secondary-color);
}

.locations-section {
  padding: 80px 20px;
  background: var(--light-bg);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.location-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--text-light);
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.location-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 800;
}

.location-card p {
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.8;
}

.faq-section {
  padding: 80px 20px;
  background: var(--text-light);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.faq-item {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow);
}

.faq-item h3 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.faq-item p {
  color: var(--gray-medium);
  font-size: 15px;
  line-height: 1.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    min-height: 500px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .solar-animation {
    margin-top: 30px;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .features-grid,
  .products-grid,
  .blog-grid,
  .team-grid,
  .mvv-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding: 50px 20px;
  }

  .hero-section h1 {
    font-size: 32px;
  }

  .hero-section p {
    font-size: 16px;
  }

  .stats .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-item h3 {
    font-size: 36px;
  }

  .stat-item p {
    font-size: 14px;
  }

  .form-wrapper {
    padding: 30px;
  }

  .job-header {
    flex-direction: column;
  }

  .location {
    width: 100%;
    text-align: center;
  }

  .timeline::before {
    left: 0;
  }

  .timeline-item {
    margin-left: 30px;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .timeline-dot {
    left: -16px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .features-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .nav-container {
    height: 60px;
  }

  .nav-logo {
    font-size: 18px;
  }

  .logo-icon {
    font-size: 22px;
  }

  .form-wrapper {
    padding: 20px;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(253, 184, 19, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(253, 184, 19, 0.8);
  }
}

.feature-card,
.product-card,
.blog-card,
.team-member,
.benefit-item {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}
.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}
.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}
.feature-card:nth-child(4) {
  animation-delay: 0.4s;
}
.feature-card:nth-child(5) {
  animation-delay: 0.5s;
}
.feature-card:nth-child(6) {
  animation-delay: 0.6s;
}
