/* ================================
   CUSTOM CSS FOR WESCALE
   Built with Bootstrap 5
   ================================ */

/* ================================
   1. CSS VARIABLES & RESET
   ================================ */
:root {
  --primary-color: #111;
  --secondary-color: #333;
  --accent-color: #007bff;
  --text-light: #666;
  --text-gray: #999;
  --bg-light: #f9f9f9;
  --shadow-light: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-medium: 0 4px 12px rgba(0,0,0,0.15);
  --border-radius: 10px;
  --transition: 0.3s ease;
}

* {
  font-family: 'Inter', sans-serif;
}

body {
  background-color: var(--bg-light);
  color: var(--primary-color);
  line-height: 1.6;
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
}

/* ================================
   2. TYPOGRAPHY
   ================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-top: 3rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* ================================
   3. BUTTONS & LINKS
   ================================ */
.btn-custom, .button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition);
  display: inline-block;
}

.btn-custom:hover, .button:hover {
  background-color: var(--secondary-color);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

/* ================================
   4. NAVBAR CUSTOMIZATIONS
   ================================ */
.navbar {
  z-index: 1000 !important;
}

.navbar-brand {
  color: var(--bg-light) !important;
  font-size: 1.5rem !important;
}

.nav-link {
  color: var(--bg-light) !important;
  transition: color var(--transition);
}

.nav-link:hover {
  color: var(--text-light) !important;
}

/* ================================
   5. HEADER & FOOTER
   ================================ */
header {
  background: var(--primary-color);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

footer {
  background: var(--primary-color);
  color: white;
  padding: 3rem 0 2rem;
  text-align: center;
  margin-top: 4rem;
}

footer small {
  display: block;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #bbb;
}

/* ================================
   6. SECTIONS & CONTAINERS
   ================================ */
.section {
  margin-bottom: 1rem;
  padding: 2rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}

.custom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ================================
   7. CARDS & GRIDS
   ================================ */
.custom-card, .card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: all var(--transition);
  border: none;
  height: 100%;
  text-align: center;
}

.custom-card:hover, .card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  display: inline-block;
  border-radius: 8px;
  line-height: 40px;
}

.card-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.card-text {
  font-size: 15px;
  color: var(--text-light);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 2rem 0;
}

/* ================================
   8. HERO SECTIONS
   ================================ */
.hero-section, .hero-content {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: #000;
}

.hero-text {
  position: relative;
  z-index: 10;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 3rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(5px);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ================================
   9. TESTIMONIALS
   ================================ */
.testimonial {
  font-style: italic;
  border-left: 4px solid var(--accent-color);
  padding-left: 1.5rem;
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 1rem;
}

/* ================================
   10. TEAM SECTION
   ================================ */
.team-card {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: all var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.team-member-name {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* ================================
   11. FAQ SECTION
   ================================ */
.faq-section {
  background: white;
  padding: 4rem 0;
  margin: 2rem 0;
}

.faq {
  list-style: none;
  padding: 0;
}

.faq li {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: all var(--transition);
}

.faq li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.faq strong {
  color: var(--primary-color);
  font-size: 1.1rem;
}

/* ================================
   12. CALL TO ACTION
   ================================ */
.cta-section {
  background: var(--accent-color);
  color: white;
  padding: 4rem 0;
  text-align: center;
  margin: 4rem 0;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section .btn-custom {
  background: white;
  color: var(--accent-color);
  font-weight: 600;
}

.cta-section .btn-custom:hover {
  background: var(--bg-light);
  color: var(--accent-color);
}

/* ================================
   13. UTILITIES
   ================================ */
.text-primary-custom {
  color: var(--primary-color) !important;
}

.text-accent {
  color: var(--accent-color) !important;
}

.bg-light-custom {
  background-color: var(--bg-light) !important;
}

.shadow-custom {
  box-shadow: var(--shadow-light) !important;
}

.rounded-custom {
  border-radius: var(--border-radius) !important;
}

/* ================================
   14. ANIMATIONS
   ================================ */
.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hover-lift {
  transition: transform var(--transition);
}

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

/* ================================
   15. RESPONSIVE DESIGN
   ================================ */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  header {
    padding: 3rem 0;
  }
  
  .section {
    margin-bottom: 3rem;
    padding: 1rem 0;
  }
  
  .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .custom-card, .card {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  header h1 {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .custom-card, .card {
    padding: 1rem;
  }
  
  .btn-custom, .button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}