:root {
  /* Color Palette - 5 primary colors with light/dark shades */
  --primary-orange: #ff6b35;
  --primary-orange-light: #ff8f65;
  --primary-orange-dark: #e55a2f;
  
  --primary-teal: #2d7d8e;
  --primary-teal-light: #4a9fb0;
  --primary-teal-dark: #24687a;
  
  --primary-purple: #6c5ce7;
  --primary-purple-light: #a29bfe;
  --primary-purple-dark: #5848c4;
  
  --primary-gold: #fdcb6e;
  --primary-gold-light: #feb75a;
  --primary-gold-dark: #e17055;
  
  --primary-green: #00b894;
  --primary-green-light: #55efc4;
  --primary-green-dark: #009c7a;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-teal) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-gold) 100%);
  --gradient-accent: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-teal) 100%);
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  --font-size-h1: 2.2rem;
  --font-size-h2: 1.8rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --font-size-h5: 1.1rem;
  --font-size-h6: 1rem;
  --navbar-brand-size: 1.4rem;
}

* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden !important;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Typography */
h1 {
  font-size: var(--font-size-h1);
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 600;
  margin-bottom: 0.7rem;
}

h4 {
  font-size: var(--font-size-h4);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

h5 {
  font-size: var(--font-size-h5);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

h6 {
  font-size: var(--font-size-h6);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

/* Header */
.navbar {
  background: var(--gradient-primary);
  padding: 0.8rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: var(--navbar-brand-size) !important;
  font-weight: 700;
  color: white !important;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-gold-light) !important;
  transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../VOX_images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.2;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
  color: white;
}

.hero-title {
  font-size: var(--font-size-h1);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: var(--font-size-h3);
  font-weight: 400;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: var(--font-size-large);
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: var(--font-size-h2);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-teal-dark);
}

.section-subtitle {
  font-size: var(--font-size-h4);
  font-weight: 400;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-purple);
}

.section-desc {
  font-size: var(--font-size-base);
  text-align: center;
  margin-bottom: 3rem;
  color: #666;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-feature {
  text-align: center;
  padding: 1.5rem;
  margin-bottom: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature h4 {
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: var(--gradient-accent);
  color: white;
}

.services-section .section-title,
.services-section .section-subtitle {
  color: white;
}

.services-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  color: #333;
}

.services-item:hover {
  transform: translateY(-10px);
}

.services-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.services-item h4 {
  color: var(--primary-teal-dark);
  margin-bottom: 1rem;
}

.services-item p {
  color: #666;
  margin-bottom: 1rem;
}

.services-price {
  font-size: var(--font-size-h3);
  font-weight: 700;
  color: var(--primary-orange);
  margin-top: 1rem;
}

/* Features Section */
.features-section {
  background: #f8f9fa;
}

.features-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
}

.features-item i {
  font-size: 3rem;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

.features-item h4 {
  color: var(--primary-teal-dark);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan-section {
  background: var(--gradient-primary);
  color: white;
}

.priceplan-section .section-title,
.priceplan-section .section-subtitle {
  color: white;
}

.priceplan-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  color: #333;
}

.priceplan-item:hover {
  transform: scale(1.05);
}

.priceplan-item h4 {
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

.priceplan-price {
  font-size: var(--font-size-h2);
  font-weight: 700;
  color: var(--primary-orange);
  margin: 1rem 0;
}

.priceplan-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.priceplan-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

/* Team Section */
.team-section {
  background: #f8f9fa;
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 5px solid var(--primary-gold);
}

.team-member h4 {
  color: var(--primary-teal-dark);
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--primary-purple);
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  background: var(--gradient-secondary);
  color: white;
}

.reviews-section .section-title,
.reviews-section .section-subtitle {
  color: white;
}

.reviews-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  color: #333;
}

.reviews-item p {
  font-style: italic;
  margin-bottom: 1rem;
  color: #666;
}

.reviews-author {
  font-weight: 700;
  color: var(--primary-teal-dark);
}

/* Case Study Section */
.casestudy-section {
  background: #f8f9fa;
}

.casestudy-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.casestudy-item:hover {
  transform: translateY(-5px);
}

.casestudy-item h4 {
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

/* Process Section */
.process-section {
  background: var(--gradient-accent);
  color: white;
}

.process-section .section-title,
.process-section .section-subtitle {
  color: white;
}

.process-item {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  color: #333;
}

.process-item h4 {
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

/* Timeline Section */
.timeline-section {
  background: #f8f9fa;
}

.timeline-item {
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-orange);
  background: white;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.timeline-item h4 {
  color: var(--primary-teal-dark);
  margin-bottom: 1rem;
}

/* Career Section */
.career-section {
  background: var(--gradient-primary);
  color: white;
}

.career-section .section-title,
.career-section .section-subtitle {
  color: white;
}

.career-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  color: #333;
}

.career-item h4 {
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.career-role {
  color: var(--primary-purple);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Core Info Section */
.coreinfo-section {
  background: #f8f9fa;
}

.coreinfo-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
}

.coreinfo-item i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.coreinfo-item h4 {
  color: var(--primary-teal-dark);
  margin-bottom: 1rem;
}

/* Blog Section */
.blog-section {
  background: var(--gradient-secondary);
  color: white;
}

.blog-section .section-title,
.blog-section .section-subtitle {
  color: white;
}

.blog-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  color: #333;
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item h4 {
  color: var(--primary-teal-dark);
  margin-bottom: 1rem;
}

.blog-item p {
  color: #666;
  margin-bottom: 1rem;
}

.blog-item a {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
}

.blog-item a:hover {
  color: var(--primary-orange-dark);
}

/* FAQ Section */
.faq-section {
  background: #f8f9fa;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 10px 10px 0 0;
  margin: 0;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 1.5rem;
  margin: 0;
  color: #666;
  border-radius: 0 0 10px 10px;
}

/* Gallery Section */
.gallery-section {
  background: var(--gradient-accent);
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Contact Section */
.contact-section {
  background: var(--gradient-primary);
  color: white;
}

.contact-section .section-title,
.contact-section .section-subtitle {
  color: white;
}

.contact-form {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  color: #333;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  font-weight: 600;
  color: var(--primary-teal-dark);
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
}

.contact-form button {
  background: var(--gradient-secondary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: var(--font-size-base);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
}

.contact-info {
  margin-top: 2rem;
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: var(--font-size-large);
}

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.footer p,
.footer a {
  color: #bdc3c7;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer a:hover {
  color: var(--primary-gold-light);
}

.footer-copyright {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #34495e;
  color: #95a5a6;
}

/* Breadcrumbs */
.breadcrumb-section {
  background: var(--gradient-primary);
  padding: 1rem 0;
}

.breadcrumb-img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Additional Utility Classes */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-gradient {
  background: var(--gradient-secondary);
  border: none;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  color: white;
}

.space-section {
  min-height: 60vh;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
} 