/* ===== 2026 CORPORATE LIGHT THEME ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Core Palette - Light Corporate */
  --bg-body: #ffffff;
  --bg-light: #f8fafc;
  --bg-section: #f1f5f9;
  
  /* Brand Colors */
  --primary: #dc2626; /* Corporate Red */
  --primary-dark: #b91c1c;
  --secondary: #0f172a; /* Navy Blue / Dark Text */
  --accent: #2563eb; /* Trust Blue */
  
  /* Text Colors */
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --gradient-overlay: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7));
  
  /* Shadows & Cards */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
  --shadow-hover: 0 20px 25px -5px rgba(0,0,0,0.1);
  
  --border-light: 1px solid #e2e8f0;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--secondary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* ===== UTILITIES ===== */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-primary { color: var(--primary) !important; }
.text-white { color: white !important; }
.bg-light { background-color: var(--bg-light); }

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Compatibility for old markup */
.glass-card, .card {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  transition: 0.3s;
}
.glass-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.neon-text {
  color: var(--secondary);
  font-weight: 700;
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
  background: white;
  box-shadow: var(--shadow-sm);
}

#header.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 90px !important; /* Force override of inline styles */
  width: auto;
  transition: all 0.3s ease;
}

/* Shrink slightly on scroll */
#header.scrolled .logo img {
  height: 70px !important;
}
.logo-text span {
  color: var(--primary);
}

#navbar ul {
  display: flex;
  gap: 30px;
  align-items: center;
}

#navbar ul li a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-main);
  position: relative;
}

#navbar ul li a:hover,
#navbar ul li a.active {
  color: var(--primary);
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropbtn {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  min-width: 240px;
  background: white;
  border-radius: 12px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  border: 1px solid #e2e8f0;
}
.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-content a {
  display: block;
  padding: 12px 20px;
  color: var(--text-main) !important;
  border-radius: 8px;
  transition: all 0.2s;
  font-size: 0.9rem;
}
.dropdown-content a:hover {
  background: var(--bg-light);
  color: var(--primary) !important;
  padding-left: 25px;
}

/* Menu Toggle */
.menu-toggle {
  display: none;
  cursor: pointer;
  color: var(--secondary);
  font-size: 1.5rem;
}

/* ===== HERO SECTIONS ===== */
.hero-slider, .page-header {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-slider {
  height: 90vh;
  /* Default placeholder, inline styles will override */
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80'); 
}

.page-header {
  height: 400px;
  background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=80');
  margin-top: 80px; /* Offset fixed header */
}

/* Overlay */
.hero-slider::before, .page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
}

.slide-content, .page-header .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  color: white;
}
.hero-text h1 span {
  color: var(--primary);
  background: white;
  padding: 0 10px;
  border-radius: 5px;
  color: var(--primary);
}

.hero-text p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #e2e8f0;
}

/* Buttons */
.btn {
  padding: 16px 32px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}
.btn-outline:hover {
  background: white;
  color: var(--secondary);
}

/* ===== FEATURES STRIP (Light) ===== */
.features-strip {
  position: relative;
  z-index: 3;
  margin-top: -60px;
  padding-bottom: 80px;
}
.features-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.feature-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: 0.3s;
}
.feature-item:hover {
  transform: translateY(-10px);
}
.feature-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
}
.feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-main);
}
.feature-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== SECTIONS GENERIC ===== */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.section-header h2 span {
  color: var(--primary);
}
.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== CARDS (Products / Services) ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f1f5f9;
  transition: 0.3s;
  text-align: center;
}
.product-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: #e2e8f0;
  transform: translateY(-5px);
}

.product-icon {
  width: 70px;
  height: 70px;
  background: #fef2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin: 0 auto 25px;
}

.product-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}
.product-card p {
  color: var(--text-muted);
}

/* ===== WHY US (Stats) ===== */
.why-us {
  background: var(--bg-light);
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

/* ===== CONTACT & FORMS ===== */
.contact-section {
  padding-top: 50px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}
.contact-info-card {
  background: var(--secondary);
  color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.form-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid #e2e8f0;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  margin-top: 5px;
  font-family: inherit;
}
.form-input:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 2px rgba(220,38,38,0.1);
}
.tab-btn {
  padding: 10px 20px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  color: var(--text-muted);
  font-weight: 600;
}
.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* ===== FOOTER ===== */
footer {
  background: var(--secondary);
  color: white;
  padding-top: 80px;
}
.footer-top {
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.footer-col ul li a {
  color: #94a3b8;
  font-size: 0.9rem;
}
.footer-col ul li a:hover {
  color: white;
  padding-left: 5px;
}
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  color: #64748b;
  font-size: 0.85rem;
}

/* ===== FILTER BUTTONS ===== */
.filter-container {
  display: inline-flex;
  padding: 6px;
  background: var(--bg-section);
  border-radius: 50px;
  border: 1px solid #e2e8f0;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.filter-btn {
  padding: 10px 25px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  border-radius: 40px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.filter-btn:hover {
  color: var(--primary);
}

.filter-btn.active {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); 
  transform: scale(1.02);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .features-strip .container { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .menu-toggle { display: block; }
  #navbar {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 250px;
    height: calc(100vh - 60px);
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    padding: 30px;
    flex-direction: column;
    transition: 0.3s;
  }
  #navbar.active { right: 0; }
  #navbar ul { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 576px) {
  .features-strip .container { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 2.5rem; }
}
