/* ========== COLOR PALETTE & ROOT VARIABLES ========== */
:root {
  /* Primary Color Palette - 5 main colors plus shades */
  --primary-dark: #1a2332;
  --primary-main: #2c3e50;
  --primary-light: #4a6378;
  
  --secondary-dark: #8b4513;
  --secondary-main: #cd853f;
  --secondary-light: #deb887;
  
  --accent-dark: #556b2f;
  --accent-main: #6b8e23;
  --accent-light: #9acd32;
  
  --neutral-dark: #2f3640;
  --neutral-main: #57606f;
  --neutral-light: #a4b0be;
  
  --burgundy-dark: #722f37;
  --burgundy-main: #8b3a3a;
  --burgundy-light: #bc5a5a;
  
  /* Gradient Colors */
  --gradient-primary: linear-gradient(135deg, var(--primary-dark), var(--primary-main));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-main), var(--secondary-light));
  --gradient-accent: linear-gradient(135deg, var(--accent-dark), var(--accent-main));
  --gradient-hero: linear-gradient(135deg, var(--primary-dark), var(--burgundy-dark), var(--neutral-dark));
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: Georgia, 'Times New Roman', serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
  --shadow-xl: 0 12px 24px rgba(0,0,0,0.25);
}

/* ========== BASE STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px; /* Conservative base font size */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--neutral-dark);
  background-color: #ffffff;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-dark);
}

h1 {
  font-size: 2.25rem;
  line-height: 1.2;
}

h2 {
  font-size: 1.875rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}

h4 {
  font-size: 1.25rem;
  line-height: 1.4;
}

p {
  margin-bottom: var(--spacing-sm);
  font-size: 1rem; /* Conservative font size */
  line-height: 1.6;
}

/* ========== HEADER & NAVIGATION ========== */
.navbar {
  background: var(--gradient-primary);
  padding: var(--spacing-sm) 0;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
    font-size: 12px !important;
  font-size: 1.25rem !important; /* Conservative size for logo */
  font-weight: 700;
  color: #ffffff !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
    font-size: 10px !important;
  color: #ffffff !important;
  font-weight: 500;
  padding: var(--spacing-xs) var(--spacing-md) !important;
  transition: all 0.3s ease;
  border-radius: var(--radius-md);
}

.navbar-nav .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.navbar-toggler {
  border: none;
  color: #ffffff;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ========== HERO SECTION ========== */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../SUC_images/svw_hero-bg.webp') center/cover;
  opacity: 0.2;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
  opacity: 0.9;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* ========== SECTION STYLES ========== */
.section {
  padding: var(--spacing-xxl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-md);
  color: var(--primary-dark);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-secondary);
  margin: var(--spacing-sm) auto;
  border-radius: var(--radius-sm);
}

.section-subtitle {
  text-align: center;
  color: var(--neutral-main);
  margin-bottom: var(--spacing-lg);
  font-size: 1.125rem;
}

/* ========== SERVICES SECTION ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
}

.service-title {
  color: var(--primary-dark);
  margin-bottom: var(--spacing-sm);
  font-size: 1.25rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--burgundy-main);
  margin-bottom: var(--spacing-sm);
}

.service-description {
  color: var(--neutral-main);
  margin-bottom: var(--spacing-md);
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: var(--spacing-xs) 0;
  color: var(--neutral-dark);
  position: relative;
  padding-left: var(--spacing-md);
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--accent-main);
  position: absolute;
  left: 0;
}

/* ========== TEAM SECTION ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.team-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--spacing-md);
  border: 4px solid var(--secondary-light);
}

.team-name {
  color: var(--primary-dark);
  margin-bottom: var(--spacing-xs);
}

.team-role {
  color: var(--neutral-main);
  font-style: italic;
}

/* ========== CONTACT FORM ========== */
.contact-form {
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  color: #ffffff;
  margin-top: var(--spacing-xl);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: var(--spacing-sm);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.btn-submit {
  background: var(--gradient-secondary);
  color: var(--primary-dark);
  border: none;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--gradient-primary);
  color: #ffffff;
  padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-section h4 {
  color: #ffffff;
  margin-bottom: var(--spacing-md);
}

.footer-section p, .footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  line-height: 1.8;
}

.footer-section a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--spacing-md);
  text-align: center;
}

.footer-bottom small {
  color: rgba(255, 255, 255, 0.7);
}

/* ========== TESTIMONIALS/REVIEWS ========== */
.testimonials-slider {
  margin-top: var(--spacing-xl);
}

.testimonial-card {
  background: #ffffff;
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: var(--spacing-sm);
  text-align: center;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--spacing-md);
  color: var(--neutral-dark);
  font-size: 1.125rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-dark);
}

/* ========== FAQ SECTION ========== */
.faq-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  background: var(--gradient-secondary);
  color: var(--primary-dark);
  padding: var(--spacing-md);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--secondary-main);
}

.faq-answer {
  padding: var(--spacing-md);
  color: var(--neutral-dark);
  border-top: 1px solid rgba(0,0,0,0.1);
}

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

/* ========== UTILITY CLASSES ========== */
.text-center { text-align: center; }
.text-primary { color: var(--primary-main); }
.text-secondary { color: var(--secondary-main); }
.text-accent { color: var(--accent-main); }

.bg-light { background-color: #f8f9fa; }
.bg-white { background-color: #ffffff; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

/* ========== BREADCRUMBS ========== */
.breadcrumb {
  background: none;
  padding: var(--spacing-sm) 0;
  margin-bottom: var(--spacing-md);
}

.breadcrumb img {
  max-height: 24px;
  width: auto;
} 