:root {
  /* Bright & Vibrant Color Palette */
  --primary-red: #FF4757;
  --bright-red: #FF6B7A;
  --dark-red: #EE5A6F;
  
  --primary-blue: #3742FA;
  --bright-blue: #5352ED;
  --light-blue: #70A1FF;
  --sky-blue: #48DBFB;
  --cyan: #1DD1A1;
  --turquoise: #10AC84;
  
  --accent-orange: #FFA502;
  --accent-yellow: #FFC312;
  
  --black: #2F3542;
  --dark-gray: #57606F;
  --medium-gray: #A4B0BE;
  --light-gray: #F1F2F6;
  --white: #FFFFFF;
  --text-gray: #57606F;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #FF4757 0%, #FF6B7A 50%, #FFA502 100%);
  --gradient-blue: linear-gradient(135deg, #3742FA 0%, #5352ED 50%, #70A1FF 100%);
  --gradient-cyan: linear-gradient(135deg, #1DD1A1 0%, #48DBFB 50%, #70A1FF 100%);
  --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  --gradient-services: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  
  --shadow: 0 8px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 15px 35px rgba(255,71,87,0.25);
  --shadow-soft: 0 4px 15px rgba(0,0,0,0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-gray);
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FF 100%);
  min-height: 100vh;
}

/* HEADER STYLES - Brighter */
header {
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F4FF 50%, #E8F0FE 100%);
  box-shadow: 0 4px 20px rgba(55,66,250,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid transparent;
  background-clip: padding-box;
}

.top-bar {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(255,71,87,0.3);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info span {
  margin-right: 25px;
  font-weight: 500;
}

.contact-info i {
  margin-right: 8px;
  color: #FFC312;
}

.social-links a {
  color: var(--white);
  margin-left: 15px;
  transition: all 0.3s;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.social-links a:hover {
  background: var(--white);
  color: var(--primary-red);
  transform: translateY(-2px);
}

.main-header {
  padding: 20px 0;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  height: 65px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.logo-text h1 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: 0.5px;
}

.logo-text p {
  color: var(--primary-blue);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 600;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 10px;
}

nav a {
  text-decoration: none;
  color: var(--black);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s;
  position: relative;
  background: rgba(255,255,255,0.5);
}

nav a:hover,
nav a.active {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,71,87,0.3);
}

.mobile-menu {
  display: none;
  background: var(--gradient-primary);
  border: none;
  font-size: 1.8rem;
  color: var(--white);
  cursor: pointer;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(255,71,87,0.3);
}

/* HERO SECTION - Super Bright */
.hero {
  background: var(--gradient-hero);
  color: var(--white);
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.5;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 25px;
  animation: fadeInUp 1s;
  font-weight: 800;
  text-shadow: 0 4px 15px rgba(0,0,0,0.2);
  position: relative;
}

.hero p {
  font-size: 1.25rem;
  max-width: 850px;
  margin: 0 auto 35px;
  animation: fadeInUp 1s 0.2s both;
  opacity: 0.95;
  position: relative;
  font-weight: 500;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--white);
  color: var(--primary-red);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s;
  border: none;
  animation: fadeInUp 1s 0.4s both;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.btn-outline {
  background: transparent;
  border: 3px solid var(--white);
  margin-left: 15px;
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-red);
}

/* SECTIONS */
section {
  padding: 100px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.8rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  font-weight: 800;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: var(--gradient-cyan);
  border-radius: 3px;
}

.section-title p {
  color: var(--text-gray);
  max-width: 700px;
  margin: 25px auto 0;
  font-size: 1.1rem;
}

/* CARDS - Brighter */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
  border-color: var(--light-blue);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 2.2rem;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(29,209,161,0.3);
}

.card h3 {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 700;
}

/* SERVICES SECTION - Extra Bright */
.services {
  background: linear-gradient(135deg, #E3F2FD 0%, #F3E5F5 50%, #FFF3E0 100%);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(55,66,250,0.1)"/></svg>');
}

/* PRODUCTS */
.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border: 2px solid #F1F2F6;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
  border-color: var(--sky-blue);
}

.product-image {
  height: 260px;
  background: var(--gradient-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 4.5rem;
  position: relative;
  overflow: hidden;
}

.product-image::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.5s;
}

.product-card:hover .product-image::after {
  left: 100%;
}

.product-info {
  padding: 30px;
}

.product-info h3 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  font-size: 1.6rem;
  font-weight: 700;
}

/* INDUSTRIES - Bright Gradient */
.industries {
  background: var(--gradient-cyan);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.industries::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><polygon points="50,5 61,35 95,35 68,57 79,91 50,70 21,91 32,57 5,35 39,35" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 100px 100px;
  opacity: 0.5;
}

.industries .section-title h2 {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.industries .section-title p {
  color: rgba(255,255,255,0.95);
}

.industry-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--white);
}

.industry-card:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.industry-card h3 {
  color: var(--white);
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 700;
}

/* CONTACT */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info-box {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FF 100%);
  padding: 35px;
  border-radius: 20px;
  margin-bottom: 25px;
  box-shadow: var(--shadow-soft);
  border-left: 5px solid transparent;
  border-image: var(--gradient-primary) 1;
}

.contact-info-box h3 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  margin-bottom: 20px;
  border: 2px solid #E1E8F0;
  border-radius: 12px;
  font-family: inherit;
  transition: all 0.3s;
  background: var(--white);
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--sky-blue);
  box-shadow: 0 0 0 4px rgba(72,219,251,0.1);
  transform: translateY(-2px);
}

/* FOOTER - Bright */
footer {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 50%, #4A6274 100%);
  color: var(--white);
  padding: 70px 0 0;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 45px;
  margin-bottom: 45px;
}

.footer-section h3 {
  color: var(--sky-blue);
  margin-bottom: 25px;
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
}

.footer-section p,
.footer-section a {
  color: #ECF0F1;
  text-decoration: none;
  line-height: 2.2;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--bright-red);
  padding-left: 5px;
}

.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 25px 0;
  text-align: center;
  border-top: 2px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  color: #BDC3C7;
  font-size: 0.95rem;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mobile-menu {
    display: block;
  }
  
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F4FF 100%);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    gap: 10px;
  }
  
  nav ul.active {
    display: flex;
  }
  
  nav a {
    background: var(--white);
    text-align: center;
    padding: 12px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .top-bar .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .btn-outline {
    margin: 15px 0 0;
    display: inline-block;
  }
}

/* Additional Bright Elements */
.badge {
  display: inline-block;
  padding: 6px 15px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.highlight-box {
  background: linear-gradient(135deg, #FFF5F5 0%, #FFF9E6 100%);
  border-left: 5px solid var(--primary-red);
  padding: 25px;
  border-radius: 12px;
  margin: 20px 0;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}