/* ===== CSS VARIABLES - COLOR PALETTE ===== */
:root {
  /* Primary Colors */
  --primary-navy: #1a365d;
  --primary-teal: #2d7d7d;
  --primary-gold: #d4af37;
  --primary-crimson: #dc2626;
  --primary-forest: #22543d;
  
  /* Light Shades */
  --light-navy: #4a90b8;
  --light-teal: #5cb3b3;
  --light-gold: #f4e077;
  --light-crimson: #f87171;
  --light-forest: #48bb78;
  
  /* Dark Shades */
  --dark-navy: #0f2537;
  --dark-teal: #1a5555;
  --dark-gold: #b8941f;
  --dark-crimson: #b91c1c;
  --dark-forest: #1a202c;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8fafc;
  --gray: #64748b;
  --dark-gray: #334155;
  --black: #1e293b;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-crimson) 100%);
  --gradient-accent: linear-gradient(135deg, var(--primary-forest) 0%, var(--light-teal) 100%);
  
  /* Conservative Font Sizes */
  --fs-h1: 2rem;
  --fs-h2: 1.75rem;
  --fs-h3: 1.5rem;
  --fs-h4: 1.25rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-navbar-brand: 1.25rem;
}

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

@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;
  }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--dark-navy);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p {
  margin-bottom: 1rem;
  color: var(--gray);
}

.text-muted {
  color: var(--gray) !important;
}

/* ===== HEADER STYLES ===== */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: var(--fs-navbar-brand) !important;
  font-weight: 700;
  color: var(--primary-navy) !important;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-nav .nav-link {
  font-size: 10px;
  font-weight: 500;
  color: var(--dark-gray) !important;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--primary-teal) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.hero-decorative:nth-child(1) {
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-decorative:nth-child(2) {
  bottom: 20%;
  left: 5%;
  width: 150px;
  height: 150px;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 60px;
  height: 3px;
  background: var(--gradient-secondary);
  transform: translateX(-50%);
}

/* ===== SERVICES SECTION ===== */
.services {
  background: var(--light-gray);
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: none;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 2rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-crimson);
  margin-top: 1rem;
}

/* ===== FEATURES SECTION ===== */
.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
  font-size: 1.5rem;
}

/* ===== PRICE PLAN SECTION ===== */
.price-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.price-card:hover {
  border-color: var(--primary-teal);
  transform: scale(1.05);
}

.price-card.featured {
  border-color: var(--primary-gold);
  transform: scale(1.05);
}

.price-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-secondary);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: var(--fs-small);
  font-weight: 600;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-forest);
  font-weight: bold;
}

/* ===== TEAM SECTION ===== */
.team-member {
  text-align: center;
  padding: 1rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.team-photo:hover {
  transform: scale(1.1);
}

.team-name {
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--gray);
  font-style: italic;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background: var(--gradient-primary);
  color: var(--white);
}

.testimonials .section-title,
.testimonials .section-subtitle {
  color: var(--white);
}

.testimonials-slider {
  overflow: hidden;
  padding: 1rem 0 3rem 0;
}

.testimonials-slider .swiper-wrapper {
  align-items: stretch;
}

.testimonials-slider .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  flex-grow: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--white);
  margin-top: auto;
}

.testimonials-slider .swiper-pagination {
  bottom: 0;
}

.testimonials-slider .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.testimonials-slider .swiper-pagination-bullet-active {
  background: var(--white);
}

/* ===== CONTACT SECTION ===== */
.contact-form {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  font-size: var(--fs-body);
}

.form-control:focus {
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 0.2rem rgba(45, 125, 125, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--gradient-accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ===== FAQ SECTION ===== */
.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.faq-question {
  background: var(--light-gray);
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
  font-weight: 600;
  color: var(--dark-navy);
}

.faq-question:hover {
  background: var(--primary-teal);
  color: var(--white);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* ===== GALLERY SECTION ===== */
.gallery {
  background: var(--light-gray);
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

/* ===== FOOTER STYLES ===== */
.footer {
  background: var(--dark-navy);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--primary-teal);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
}

#site-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-small);
}

/* ===== UTILITIES ===== */
.bg-gradient-primary { background: var(--gradient-primary); }
.bg-gradient-secondary { background: var(--gradient-secondary); }
.bg-gradient-accent { background: var(--gradient-accent); }

.text-primary-navy { color: var(--primary-navy); }
.text-primary-teal { color: var(--primary-teal); }
.text-primary-gold { color: var(--primary-gold); }

/* ===== BREADCRUMBS ===== */
.breadcrumb-container {
  background: var(--light-gray);
  padding: 1rem 0;
}

.breadcrumb-image {
  max-height: 30px;
  width: auto;
}
