/* === CSS VARIABLES & COLOR PALETTE === */
:root {
  /* Primary 5-color palette + light/dark shades */
  --primary-navy: #1e3a5f;
  --primary-gold: #d4af37;
  --primary-sage: #87a96b;
  --primary-cream: #f5f3f0;
  --primary-charcoal: #2c3e50;
  
  /* Light shades */
  --light-navy: #3a5f8a;
  --light-gold: #e6c963;
  --light-sage: #a8c287;
  --light-cream: #faf9f7;
  --light-charcoal: #4a5d73;
  
  /* Dark shades */
  --dark-navy: #0f1d30;
  --dark-gold: #b8921f;
  --dark-sage: #6b8054;
  --dark-cream: #e8e5e0;
  --dark-charcoal: #1a252f;
  
  /* Conservative font sizes */
  --root-font-size: 16px;
  --navbar-brand-size: 1.25rem;
  --h1-size: 2rem;
  --h2-size: 1.5rem;
  --p-size: 1rem;
}

/* === GLOBAL STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--root-font-size);
  line-height: 1.6;
  color: var(--primary-charcoal);
  background-color: var(--primary-cream);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* === TYPOGRAPHY === */
h1 {
  font-size: var(--h1-size);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-navy);
}

h2, h3 {
  font-size: var(--h2-size);
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--primary-navy);
}

p {
  font-size: var(--p-size);
  margin-bottom: 1rem;
  color: var(--primary-charcoal);
}

/* === HEADER & NAVIGATION === */
.navbar-brand {
    font-size: 12px !important;
  font-size: var(--navbar-brand-size) !important;
  font-weight: 700;
  color: var(--primary-navy) !important;
}

.navbar {
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--light-cream) 100%);
  box-shadow: 0 2px 10px rgba(30, 58, 95, 0.1);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
    font-size: 10px !important;
  color: var(--primary-navy) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-gold) !important;
}

/* === HERO SECTION === */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--light-navy) 50%, var(--primary-sage) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../INV_images/hero-bg.webp') center/cover;
  opacity: 0.2;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-section h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.hero-section p {
  color: var(--light-cream);
  font-size: 1.1rem;
}

/* === DECORATIVE SHAPES === */
.blob-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-gold), var(--light-gold));
  opacity: 0.1;
  z-index: 1;
}

.blob-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.blob-2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* === SECTIONS === */
.section {
  padding: 5rem 0;
  position: relative;
}

.section:nth-child(even) {
  background: linear-gradient(135deg, var(--light-cream) 0%, var(--primary-cream) 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  text-align: center;
  color: var(--primary-sage);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* === SERVICES BLOCK === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--light-cream);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(30, 58, 95, 0.15);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin: 1rem 0;
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

/* === TEAM SECTION === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(30, 58, 95, 0.1);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-gold);
}

/* === TESTIMONIALS SLIDER === */
.testimonials-slider {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
  color: white;
  padding: 5rem 0;
  margin: 3rem 0;
}

.testimonial-item {
  text-align: center;
  padding: 2rem;
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--light-cream);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-gold);
}

/* === FAQ SECTION === */
.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(30, 58, 95, 0.1);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-navy);
  border-bottom: 1px solid var(--light-cream);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--primary-charcoal);
  display: none;
}

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(30, 58, 95, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* === CONTACT FORM === */
.contact-form {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
  margin-top: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  border: 2px solid var(--light-cream);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--dark-gold) 0%, var(--primary-gold) 100%);
}

/* === FOOTER === */
.footer {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 5rem;
}

.footer h5 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}
.footer p {
  color: var(--primary-gold);

}

.footer a {
  color: var(--light-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-gold);
}

.footer-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--light-navy);
  margin-top: 2rem;
  color: var(--light-cream);
  font-size: 0.9rem;
}

/* === BREADCRUMBS === */
.breadcrumb-section {
  padding: 2rem 0;
  background: linear-gradient(135deg, var(--light-cream) 0%, var(--primary-cream) 100%);
}

.breadcrumb-image {
  max-height: 40px;
  width: auto;
}

/* === UTILITIES === */
.text-gold {
  color: var(--primary-gold) !important;
}

.text-navy {
  color: var(--primary-navy) !important;
}

.bg-sage {
  background-color: var(--primary-sage) !important;
}

.gradient-bg {
  background: linear-gradient(135deg, var(--primary-sage) 0%, var(--light-sage) 100%);
}

/* === PRICE PLAN CARDS === */
.priceplan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.priceplan-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
  border: 2px solid var(--light-cream);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.priceplan-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-5px);
}

.priceplan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin: 1.5rem 0;
}

/* === FEATURES GRID === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(30, 58, 95, 0.1);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
} 