:root {
  --primary: rgba(184, 49, 47, 1);
  --primary-dark: #8c2725;
  --secondary: rgba(0, 0, 0, 1);
  --white: #ffffff;
  --gray-light: #f8f9fa;
  --gray-dark: #343a40;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 80px;
}

/* Font Classes */
.font-stencil {
  font-family: 'Stardos Stencil', cursive;
  text-transform: uppercase;
}

/* ===== HEADER & NAVIGATION ===== */
#site-header {
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  z-index: 1000;
}

#site-header.scrolled {
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ===== LOGO STYLES ===== */
.header-logo {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

.header-logo:hover {
  transform: scale(1.05);
}

.mobile-logo {
  height: 40px;
  width: auto;
}

/* Desktop Navigation */
.nav-link-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-family: 'Stardos Stencil', cursive;
  text-transform: uppercase;
  border: none;
  background: none;
  cursor: pointer;
  height: 100%;
  justify-content: center;
}

.nav-link-simple span {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.nav-line {
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px 2px 0 0;
}

.nav-link-simple:hover .nav-line {
  left: 0;
}

.nav-link-simple:hover {
  color: var(--primary);
}

/* ===== DROPDOWN MENU ===== */
.nav-dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  padding: 1rem 0;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(229, 231, 235, 0.8);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  color: var(--gray-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  border-left: 3px solid transparent;
}

.nav-dropdown-link:hover {
  background: rgba(184, 49, 47, 0.05);
  color: var(--primary);
  border-left-color: var(--primary);
}

.nav-dropdown-link i {
  width: 20px;
  text-align: center;
}

/* ===== MOBILE NAVIGATION ===== */
/* ===== FIXED MOBILE NAVIGATION ===== */
.mobile-nav-link {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 0.75rem;
  font-family: 'Stardos Stencil', cursive;
  text-transform: uppercase;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.mobile-nav-link:hover {
  background: rgba(184, 49, 47, 0.05);
  color: var(--primary);
}

.mobile-dropdown-menu {
  border-left: 3px solid var(--primary);
  background: rgba(184, 49, 47, 0.02);
}

.mobile-dropdown-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: var(--gray-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.mobile-dropdown-link:hover {
  background: rgba(184, 49, 47, 0.1);
  color: var(--primary);
}

.mobile-dropdown-link i {
  width: 20px;
  text-align: center;
}

/* Fix Services underline */
.nav-dropdown .nav-link-simple {
  position: relative;
}

.nav-dropdown .nav-link-simple .nav-line {
  bottom: 0;
  left: -100%;
}

.nav-dropdown:hover .nav-link-simple .nav-line {
  left: 0;
}

/* Ensure the dropdown itself doesn't affect the underline */
.nav-dropdown-menu {
  z-index: 1000;
}
/* Mobile Menu States */
#mobile-backdrop {
  transition: opacity 0.3s ease;
}

#mobile-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

#mobile-menu {
  transition: transform 0.3s ease;
}

#mobile-menu.active {
  transform: translateX(0);
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(184, 49, 47, 0.3);
  font-family: 'Stardos Stencil', cursive;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 49, 47, 0.4);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(135deg, rgba(184, 49, 47, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%), 
              url('../images/placeholder-hero.jpg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  margin-top: -80px;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  z-index: 99;
}

.hero-title {
  font-family: 'Stardos Stencil', cursive;
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.hero-tagline {
  font-family: 'Stardos Stencil', cursive;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0;
  font-weight: 400;
}

.hero-video-container {
  width: 100%;
  max-width: 600px;
  margin: 1rem 0;
}

.video-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  width: 100%;
  aspect-ratio: 16/9;
}

.video-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.6);
}

.video-background {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.video-placeholder {
  cursor: pointer;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(184, 49, 47, 0.3), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(184, 49, 47, 0.4);
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--primary-dark);
}

.play-button i {
  color: white;
  font-size: 2rem;
  margin-left: 4px;
}

.hero-cta {
  margin-top: 1rem;
}

/* ===== WAVE DIVIDERS ===== */
.wave-divider {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider-top {
  top: -1px;
}

.wave-divider-bottom {
  bottom: -1px;
}

.wave-white-to-color {
  height: 150px;
}

.wave-white-to-color svg {
  height: 150px;
  width: calc(100% + 1.3px);
  display: block;
}

.wave-color-to-white {
  height: 150px;
}

.wave-color-to-white svg {
  height: 150px;
  width: calc(100% + 1.3px);
  display: block;
  transform: rotate(180deg);
}

.wave-white-to-gray {
  height: 150px;
}

.wave-white-to-gray svg {
  height: 150px;
  width: calc(100% + 1.3px);
  display: block;
}

.wave-gray-to-white {
  height: 150px;
}

.wave-gray-to-white svg {
  height: 150px;
  width: calc(100% + 1.3px);
  display: block;
  transform: rotate(180deg);
}

/* ===== SECTIONS ===== */
.section-padding {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  font-family: 'Stardos Stencil', cursive;
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
}
#services .section-title::after {right:0; margin: 0 auto; }
#lp-intro .section-title::after {right:0; margin: 0 auto; }

.section-subtitle {
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Stardos Stencil', cursive;
}

/* ===== ENHANCED ABOUT PERSON IMAGE ===== */
.person-image-container {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.5s ease;
  height: 500px;
}

.person-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: all 0.5s ease;
}

.person-image-container:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.person-image-container:hover .person-image {
  transform: scale(1.05);
}

/* ===== ENHANCED SERVICE CARDS ===== */
.service-card-enhanced {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 3rem 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.5);
  height: 100%;
  text-align: center;
  background: white;
}

.service-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card-enhanced::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(184, 49, 47, 0.05), transparent);
  transition: left 0.6s ease;
}

.service-card-enhanced:hover::before {
  transform: scaleX(1);
}

.service-card-enhanced:hover::after {
  left: 100%;
}

.service-card-enhanced:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(184, 49, 47, 0.15);
}

.service-icon-enhanced {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.2rem;
  margin: 0 auto 2rem auto;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 15px 30px rgba(184, 49, 47, 0.3);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.service-card-enhanced:hover .service-icon-enhanced {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 20px 40px rgba(184, 49, 47, 0.4);
}

.service-icon-enhanced::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  opacity: 0.2;
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.1); opacity: 0.1; }
  100% { transform: scale(1); opacity: 0.2; }
}

.service-title-enhanced {
  font-family: 'Stardos Stencil', cursive;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

.service-description {
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.service-feature {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(184, 49, 47, 0.2);
  transition: all 0.3s ease;
}

.service-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 49, 47, 0.3);
}

.service-link-enhanced {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  font-family: 'Stardos Stencil', cursive;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary);
  border-radius: 0.75rem;
  background: transparent;
}

.service-link-enhanced:hover {
  color: white;
  background: var(--primary);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(184, 49, 47, 0.3);
}

/* ===== ABOUT SECTION ===== */
.about-image {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.5s ease;
}

.about-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

/* ===== ENHANCED CONTACT SECTION ===== */
.contact-section {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
}

.contact-container {
  background: white;
  border-radius: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.8);
}

.contact-info-sidebar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.contact-info-sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.1"><polygon points="0,1000 1000,0 1000,1000" fill="white"/></svg>');
  background-size: cover;
}

.contact-info-content {
  position: relative;
  z-index: 2;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-family: 'Stardos Stencil', cursive;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-text p,
.contact-info-text a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-text a:hover {
  color: white;
}

.contact-form-side {
  padding: 3rem;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-form-header h3 {
  font-family: 'Stardos Stencil', cursive;
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.contact-form-header p {
  color: #6b7280;
  font-size: 1.1rem;
}

.contact-form-container {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border: none;
}

.contact-form-container::before {
  display: none;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  font-family: 'Stardos Stencil', cursive;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  font-family: inherit;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(184, 49, 47, 0.1);
  transform: translateY(-1px);
}

.contact-submit-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Stardos Stencil', cursive;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  padding: 1.25rem;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 49, 47, 0.4);
}

/* Form message styles */
#form-message {
  padding: 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
  margin-top: 1rem;
}

#form-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

#form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ===== FOOTER ===== */
#site-footer {
  background: #000;
  color: white;
  position: relative;
  text-align: center;
}

.footer-logo {
  text-align: center;
  margin: 0 auto;
}

.charity-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.charity-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  background: linear-gradient(135deg, var(--secondary) 0%, #2d3748 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease-out;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  
  .hero-section {
    margin-top: -70px;
    min-height: calc(100vh - 70px);
    padding: 1rem 0;
  }
  
  .hero-content {
    padding: 0 1rem;
    gap: 1.5rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }
  
  .hero-tagline {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
  
  .service-card-enhanced {
    padding: 2rem 1.5rem;
  }
  
  .video-container {
    border-radius: 0.5rem;
  }
  
  .play-button {
    width: 60px;
    height: 60px;
  }
  
  .play-button i {
    font-size: 1.5rem;
  }
  
  .person-image-container {
    height: 400px;
    transform: none;
    margin-bottom: 2rem;
  }
  
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info-sidebar,
  .contact-form-side {
    padding: 2rem;
  }
  
  .wave-white-to-color,
  .wave-color-to-white,
  .wave-white-to-gray,
  .wave-gray-to-white {
    height: 100px;
  }
  
  .wave-white-to-color svg,
  .wave-color-to-white svg,
  .wave-white-to-gray svg,
  .wave-gray-to-white svg {
    height: 100px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-tagline {
    font-size: 1rem;
    letter-spacing: 1px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .btn-primary {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
  
  .play-button {
    width: 50px;
    height: 50px;
  }
  
  .play-button i {
    font-size: 1.25rem;
  }
  
  .service-card-enhanced {
    padding: 1.5rem 1rem;
  }
  
  .person-image-container {
    height: 350px;
  }
  
  .service-icon-enhanced {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .contact-info-sidebar,
  .contact-form-side {
    padding: 1.5rem;
  }
  
  .contact-info-item {
    padding: 1rem;
  }
  
  .contact-info-icon {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
  }
}

/* Responsive logo adjustments */
@media (max-width: 768px) {
  .header-logo {
    height: 45px;
  }
}

@media (max-width: 480px) {
  .header-logo {
    height: 40px;
  }
  
  .mobile-logo {
    height: 35px;
  }
}
/* Fix for navigation alignment */
.nav-link-simple {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
}

.nav-dropdown .nav-link-simple {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Ensure mobile menu displays all content */
#mobile-menu {
    display: flex;
    flex-direction: column;
}

#mobile-menu > div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

#mobile-menu nav {
    flex: 1;
}
/* Fix for desktop navigation chevron alignment */
.nav-dropdown .nav-link-simple {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-direction: row !important;
}

.nav-dropdown .nav-link-simple .nav-line {
    bottom: -2px;
}

.nav-dropdown .nav-link-simple i {
    margin-top: 0;
    transition: transform 0.3s ease;
}
/* Fix for Services dropdown underline appearing prematurely */
.nav-dropdown .nav-link-simple .nav-line {
    left: -100%;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown .nav-link-simple:hover .nav-line {
    left: 0;
}

/* Ensure the dropdown menu doesn't trigger the underline when hovering over it */
.nav-dropdown-menu:hover ~ .nav-link-simple .nav-line {
    left: -100%;
}

/* Keep underline visible when hovering over the dropdown trigger */
.nav-dropdown:hover .nav-link-simple .nav-line {
    left: 0;
}
/* Fix Services dropdown underline - only show on button hover, not dropdown hover */
.nav-dropdown .nav-link-simple .nav-line {
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown .nav-link-simple:hover .nav-line {
    left: 0;
}

/* Reset the underline when not hovering the button specifically */
.nav-dropdown:not(:hover) .nav-link-simple .nav-line {
    left: -100%;
}

/* Landing Page Specific Styles */

/* Landing Hero Section */
.landing-hero {
    background: linear-gradient(135deg, rgba(184, 49, 47, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%), 
                url('../images/placeholder-landing-hero.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    margin-top: -80px;
}

.landing-hero-title {
    font-family: 'Stardos Stencil', cursive;
    font-size: 2rem;
    font-weight: ;
    color: white;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-transform: none;
    letter-spacing: 1px;
}

/* Bullet Points Styling */
.bullet-points-container {

}

.bullet-points-title {
    font-family: 'Stardos Stencil', cursive;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bullet-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bullet-point {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bullet-point:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.bullet-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(184, 49, 47, 0.3);
}

.bullet-text h4 {
    font-family: 'Stardos Stencil', cursive;
    font-size: 1rem;
    color: white;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.bullet-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Info Row Section Styling */
.info-row-title {
    font-family: 'Stardos Stencil', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-row-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 2px;
}

/* Responsive Design for Landing Page */
@media (max-width: 1024px) {
    .landing-hero-title {
        font-size: 2.5rem;
    }
    
    .bullet-points-container {
        padding: 2rem;
    }
    
    .bullet-point {
        padding: 1.25rem;
    }
    
    .bullet-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .landing-hero {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .landing-hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .bullet-points-container {
        padding: 1.5rem;
    }
    
    .bullet-points-title {
        font-size: 1.5rem;
    }
    
    .bullet-point {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .info-row-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .landing-hero-title {
        font-size: 1.75rem;
    }
    
    .bullet-points-container {
        padding: 1rem;
    }
    
    .bullet-points-title {
        font-size: 1.3rem;
    }
    
    .bullet-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .bullet-text h4 {
        font-size: 1.1rem;
    }
    
    .info-row-title {
        font-size: 1.5rem;
    }
}