:root {
  --default-font: "Cabin", sans-serif;
  --heading-font: "Cabin", sans-serif;
  --nav-font: "Cabin", sans-serif;
  
  --background-color: #0d1a26;
  --surface-color: #1a2c3d;
  --default-color: #4a90e2;
  --heading-color: #ffffff;
  --accent-color: #007bff;
  --text-color: #c9d6e4;
  --contrast-color: #0d1a26;
  
  --nav-color: #c9d6e4;
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #1a2c3d;
  --nav-dropdown-background-color: #1a2c3d;
  --nav-dropdown-color: #c9d6e4;
  --nav-dropdown-hover-color: #ffffff;
  
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --danger-color: #f44336;
  --info-color: #2196f3;
  
  --section-padding: 60px 0;
}

.light-background {
  --background-color: #1a2c3d;
  --surface-color: #0d1a26;
  --heading-color: #ffffff;
  --text-color: #c9d6e4;
}

.dark-background {
  --background-color: #0d1a26;
  --surface-color: #1a2c3d;
  --heading-color: #ffffff;
  --text-color: #c9d6e4;
}

/*--------------------------------------------------------------
# General Styling
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  scroll-behavior: smooth;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--default-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--heading-color);
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  color: var(--text-color);
  margin-bottom: 1rem;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header-modern {
  position: relative;
  z-index: 997;
  background: var(--surface-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-top {
  background: rgba(26, 95, 63, 0.05);
  border-bottom: 1px solid rgba(26, 95, 63, 0.1);
  padding: 0.5rem 0;
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.header-contact-info {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.header-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.header-link:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.header-link i {
  font-size: 0.9rem;
}

.header-social {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 95, 63, 0.1);
  border-radius: 8px;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(26, 95, 63, 0.2);
}

.social-icon:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  text-decoration: none;
}

.header-main {
  background: var(--surface-color);
  border-bottom: 1px solid rgba(26, 95, 63, 0.15);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.scrolled .header-main {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-modern {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo-modern:hover {
  opacity: 0.8;
  text-decoration: none;
}

.logo-modern .logo-img {
  width: 180px;
  height: 54px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.navmenu-modern {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  align-items: center;
}

.nav-menu-list li {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-color);
  background: rgba(26, 95, 63, 0.05);
  text-decoration: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.btn-link:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.btn-primary-modern {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.btn-primary-modern:hover {
  background: var(--heading-color);
  border-color: var(--heading-color);
  color: var(--contrast-color);
  text-decoration: none;
}

.btn-primary-modern i {
  font-size: 1rem;
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
  z-index: 1001;
}

.mobile-nav-toggle:hover {
  color: var(--accent-color);
}

/* Mobile Menu Styles */
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  
  .navmenu-modern {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--surface-color);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 80px 0 20px;
  }
  
  .navmenu-modern.active {
    right: 0;
  }
  
  .nav-menu-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 1.5rem;
  }
  
  .nav-menu-list li {
    width: 100%;
    border-bottom: 1px solid rgba(26, 95, 63, 0.1);
  }
  
  .nav-link {
    width: 100%;
    padding: 1rem 0;
    border-radius: 0;
    font-size: 1rem;
  }
  
  .nav-link:hover,
  .nav-link.active {
    background: rgba(26, 95, 63, 0.05);
    padding-left: 1rem;
  }
  
  .header-actions {
    gap: 0.5rem;
  }
  
  .btn-primary-modern {
    display: none;
  }
  
}

@media (max-width: 768px) {
  .header-main-content {
    gap: 1rem;
  }
  
  .logo-modern .logo-img {
    width: 140px;
    height: 42px;
  }
  
  .btn-link span {
    display: none;
  }
  
  .header-actions {
    gap: 0.25rem;
  }
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section,
.section {
  padding: var(--section-padding);
  color: var(--text-color);
  background-color: var(--background-color);
  scroll-margin-top: 90px;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
  background: var(--background-color);
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-down span {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

/*--------------------------------------------------------------
# Pricing Section (Plans)
--------------------------------------------------------------*/
.pricing-epic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}

.pricing-card-epic {
  position: relative;
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2.5rem;
  border: 2px solid rgba(26, 95, 63, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing-card-epic:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 12px rgba(26, 95, 63, 0.15);
  transform: translateY(-5px);
}

.pricing-card-epic.featured-epic {
  border-color: var(--accent-color);
  background: var(--surface-color);
  box-shadow: 0 4px 16px rgba(26, 95, 63, 0.2);
}

.popular-badge-epic {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 3;
}

.pricing-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(26, 95, 63, 0.1);
  color: var(--heading-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(26, 95, 63, 0.2);
  z-index: 3;
}

.pricing-header-epic {
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 3rem;
}

.pricing-header-epic h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.price-epic {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.currency-epic {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
}

.amount-epic {
  font-size: 4rem;
  font-weight: 900;
  color: var(--heading-color);
  line-height: 1;
}

.period-epic {
  font-size: 1.2rem;
  color: var(--text-color);
}

.price-description-epic {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
}

.pricing-features-epic {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.feature-item-epic {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(26, 95, 63, 0.05);
  border-radius: 8px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.pricing-card-epic:hover .feature-item-epic {
  background: rgba(26, 95, 63, 0.1);
  border-left-color: var(--accent-color);
}

.feature-item-epic.disabled {
  background: rgba(0, 0, 0, 0.05);
  opacity: 0.6;
}

.feature-item-epic i {
  font-size: 1.2rem;
  color: var(--success-color);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.feature-item-epic.disabled i {
  color: var(--danger-color);
}

.feature-item-epic span {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-color);
}

.pricing-footer-epic {
  text-align: center;
}

.btn-pricing-epic {
  display: inline-block;
  width: 100%;
  padding: 1rem 2rem;
  background: rgba(26, 95, 63, 0.1);
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-pricing-epic:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
}

.btn-pricing-epic.primary {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.btn-pricing-epic.primary:hover {
  background: var(--heading-color);
  border-color: var(--heading-color);
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--text-color);
  margin-top: 1rem;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials Section (Reviews)
--------------------------------------------------------------*/
.testimonials {
  background: var(--background-color);
}

.features-epic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0;
}

.feature-card-epic {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid rgba(26, 95, 63, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feature-card-epic:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 12px rgba(26, 95, 63, 0.15);
  transform: translateY(-5px);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 95, 63, 0.1);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.feature-icon-wrapper i {
  font-size: 2rem;
  color: var(--accent-color);
}

.feature-content-wrapper h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.feature-content-wrapper p {
  color: var(--text-color);
  margin-bottom: 1rem;
}

.feature-list-modern {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
}

.feature-item i {
  color: var(--success-color);
  font-size: 1rem;
}

.feature-item span {
  color: var(--text-color);
  font-size: 0.9rem;
}

.progress-modern {
  width: 100%;
  height: 8px;
  background: rgba(26, 95, 63, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-modern {
  height: 100%;
  background: var(--accent-color);
  border-radius: 4px;
  transition: width 0.3s ease;
}


/*--------------------------------------------------------------
# Success Stories Section (Journey)
--------------------------------------------------------------*/
.success-stories {
  background: var(--background-color);
}

.success-timeline-epic {
  padding: 2rem 0;
}

.timeline-card-epic {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid rgba(26, 95, 63, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.timeline-card-epic:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 12px rgba(26, 95, 63, 0.15);
  transform: translateY(-5px);
}

.timeline-date-epic {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-card-epic h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.timeline-card-epic p {
  color: var(--text-color);
  margin: 0;
}

/*--------------------------------------------------------------
# Contact CTA Section
--------------------------------------------------------------*/
.contact-cta {
  background: var(--background-color);
}

.contact-cta h2 {
  color: var(--heading-color);
}

.contact-cta .lead {
  color: var(--text-color);
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.btn-primary:hover {
  background: var(--heading-color);
  border-color: var(--heading-color);
  color: var(--contrast-color);
  text-decoration: none;
}

.btn-outline-primary {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-outline-primary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-modern {
  background: var(--surface-color);
  border-top: 2px solid rgba(26, 95, 63, 0.2);
  padding: 60px 0 0;
}

.footer-top {
  padding-bottom: 40px;
}

.footer-brand-modern {
  margin-bottom: 2rem;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.footer-logo-link:hover {
  text-decoration: none;
}

.footer-logo-img {
  width: 180px;
  height: 54px;
  object-fit: contain;
}

.footer-description {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-social-modern {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 95, 63, 0.1);
  border-radius: 8px;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(26, 95, 63, 0.2);
}

.social-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  text-decoration: none;
}

.footer-column {
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 0.5rem;
}

.footer-menu a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.footer-newsletter-text {
  color: var(--text-color);
  margin-bottom: 1rem;
}

.newsletter-form-modern {
  margin-bottom: 1.5rem;
}

.newsletter-input-group {
  display: flex;
  gap: 0.5rem;
  border: 2px solid rgba(26, 95, 63, 0.2);
  border-radius: 8px;
  padding: 0.5rem;
  transition: border-color 0.3s ease;
}

.newsletter-input-group:focus-within {
  border-color: var(--accent-color);
}

.newsletter-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.5rem;
  font-family: var(--default-font);
  color: var(--text-color);
  background: transparent;
}

.newsletter-input::placeholder {
  color: rgba(26, 95, 63, 0.5);
}

.newsletter-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-btn:hover {
  background: var(--heading-color);
}

.footer-contact-modern {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-color);
}

.contact-row i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.contact-row a {
  color: var(--text-color);
  text-decoration: none;
}

.contact-row a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.footer-bottom-modern {
  background: rgba(26, 95, 63, 0.05);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(26, 95, 63, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright-modern {
  color: var(--text-color);
}

.copyright-modern strong {
  color: var(--heading-color);
}

.footer-legal-modern {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-legal-modern a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-modern a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.footer-legal-modern .separator {
  color: var(--text-color);
  opacity: 0.5;
}

@media (max-width: 768px) {
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Page Title Section
--------------------------------------------------------------*/
.page-title {
  background: var(--background-color);
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
}

.page-title h1 {
  color: var(--heading-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-title p {
  color: var(--text-color);
  font-size: 1rem;
  margin: 0;
}

/*--------------------------------------------------------------
# Page Content
--------------------------------------------------------------*/
.page-content-epic {
  color: var(--text-color);
}

.page-content-epic h2 {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.page-content-epic h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.page-content-epic p {
  color: var(--text-color);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.page-content-epic ul {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.page-content-epic li {
  color: var(--text-color);
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.page-content-epic strong {
  color: var(--heading-color);
}

.contact-info {
  background: rgba(26, 95, 63, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.alert {
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.alert-info {
  background: rgba(26, 95, 63, 0.1);
  border: 1px solid rgba(26, 95, 63, 0.2);
  color: var(--text-color);
}

.alert-warning {
  background: rgba(139, 105, 20, 0.1);
  border: 1px solid rgba(139, 105, 20, 0.2);
  color: var(--text-color);
}

.alert h4 {
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

/*--------------------------------------------------------------
# Services Page Styles
--------------------------------------------------------------*/
.services-hero-section {
  padding: 80px 0;
  background: var(--background-color);
}

.services-hero-content {
  padding: 2rem 0;
}

.services-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.services-hero-description {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.services-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item-modern {
  text-align: center;
}

.stat-number-modern {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-modern {
  font-size: 0.95rem;
  color: var(--text-color);
  font-weight: 500;
}

.services-visual-card {
  background: var(--surface-color);
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(26, 95, 63, 0.1);
  border: 2px solid rgba(26, 95, 63, 0.1);
}

.visual-icon-large {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 95, 63, 0.1);
  border-radius: 50%;
}

.visual-icon-large i {
  font-size: 3rem;
  color: var(--accent-color);
}

.services-visual-card h3 {
  font-size: 1.5rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.services-visual-card p {
  color: var(--text-color);
  font-size: 1rem;
}

.services-main-section {
  padding: 80px 0;
}

.section-header-center {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-center {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.section-description-center {
  font-size: 1.1rem;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
}

.service-card-modern {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid rgba(26, 95, 63, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-modern:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(26, 95, 63, 0.15);
  transform: translateY(-5px);
}

.service-header-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-icon-modern {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 95, 63, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.service-icon-modern i {
  font-size: 1.75rem;
  color: var(--accent-color);
}

.service-title-modern {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.service-description-modern {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  flex-grow: 1;
}

.service-features-modern {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-features-modern li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.service-features-modern i {
  color: var(--success-color);
  font-size: 1rem;
  flex-shrink: 0;
}

.service-footer-modern {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 95, 63, 0.1);
}

.service-link-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-link-modern:hover {
  color: var(--heading-color);
  gap: 0.75rem;
}

/*--------------------------------------------------------------
# Contact Page Styles
--------------------------------------------------------------*/
.contact-section {
  padding: 80px 0;
  background: var(--background-color);
}

.contact-info-epic {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(26, 95, 63, 0.1);
  border: 2px solid rgba(26, 95, 63, 0.1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(26, 95, 63, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-info-epic h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.contact-info-description {
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.info-item-epic {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.info-icon-epic {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 95, 63, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.info-icon-epic i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.info-content-epic {
  flex: 1;
}

.info-content-epic h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.info-content-epic p {
  color: var(--text-color);
  margin: 0;
  line-height: 1.7;
}

.info-content-epic a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content-epic a:hover {
  color: var(--heading-color);
  text-decoration: underline;
}

.text-muted {
  color: var(--text-color);
  opacity: 0.7;
  font-size: 0.9rem;
}

.social-links-epic {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 95, 63, 0.1);
}

.social-links-epic h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.social-icons-epic {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-icon-epic {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 95, 63, 0.1);
  border-radius: 10px;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-icon-epic:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  border-color: var(--accent-color);
}

.social-icon-epic i {
  font-size: 1.25rem;
}

.contact-form-epic {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(26, 95, 63, 0.1);
  border: 2px solid rgba(26, 95, 63, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(26, 95, 63, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-intro-epic {
  margin-bottom: 2rem;
}

.contact-intro-epic h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.contact-intro-epic p {
  color: var(--text-color);
  font-size: 1.05rem;
  line-height: 1.7;
}

.form-group-epic {
  margin-bottom: 1.5rem;
}

.form-group-epic label {
  display: block;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group-epic input,
.form-group-epic select,
.form-group-epic textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid rgba(26, 95, 63, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--default-font);
  color: var(--text-color);
  background: var(--surface-color);
  transition: all 0.3s ease;
}

.form-group-epic input:focus,
.form-group-epic select:focus,
.form-group-epic textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(26, 95, 63, 0.1);
}

.form-group-epic input::placeholder,
.form-group-epic textarea::placeholder {
  color: var(--text-color);
  opacity: 0.5;
}

.form-group-epic textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group-epic select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a5f3f' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-check-epic {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-check-epic input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
  cursor: pointer;
  accent-color: var(--accent-color);
  flex-shrink: 0;
}

.form-check-epic label {
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

.form-check-epic label a {
  color: var(--accent-color);
  text-decoration: underline;
}

.form-check-epic label a:hover {
  color: var(--heading-color);
}

.btn-submit-epic {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2.5rem;
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-submit-epic:hover {
  background: var(--heading-color);
  border-color: var(--heading-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 95, 63, 0.3);
}

.btn-submit-epic i {
  font-size: 1.1rem;
}

/* Contact Page Responsive */
@media (max-width: 992px) {
  .contact-info-epic {
    margin-bottom: 2rem;
  }
  
  .contact-form-epic {
    padding: 2rem;
  }
  
  .contact-intro-epic h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-info-epic {
    padding: 2rem;
  }
  
  .contact-info-epic h3 {
    font-size: 1.5rem;
  }
  
  .info-item-epic {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .info-icon-epic {
    width: 40px;
    height: 40px;
  }
  
  .info-icon-epic i {
    font-size: 1.25rem;
  }
  
  .contact-form-epic {
    padding: 1.5rem;
  }
  
  .contact-intro-epic h3 {
    font-size: 1.35rem;
  }
  
  .contact-intro-epic p {
    font-size: 0.95rem;
  }
  
  .btn-submit-epic {
    width: 100%;
    justify-content: center;
  }
  
  .social-icons-epic {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# About Page Styles
--------------------------------------------------------------*/
.about-team-section {
  padding: 80px 0;
  background: var(--background-color);
}

.team-card-modern {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(26, 95, 63, 0.1);
  border: 2px solid rgba(26, 95, 63, 0.1);
  height: 100%;
}

.team-header-modern {
  margin-bottom: 2rem;
}

.team-title-modern {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-top: 1rem;
  line-height: 1.3;
}

.team-content-modern {
  margin-top: 1.5rem;
}

.team-text-modern {
  font-size: 1.05rem;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.team-features-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team-feature-item-modern {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.team-feature-icon-modern {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 95, 63, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.team-feature-icon-modern i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.team-feature-content-modern {
  flex: 1;
}

.team-feature-title-modern {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.team-feature-text-modern {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
}

.legal-card-modern {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(26, 95, 63, 0.1);
  border: 2px solid rgba(26, 95, 63, 0.1);
  height: 100%;
}

.legal-header-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(26, 95, 63, 0.1);
}

.legal-icon-modern {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 95, 63, 0.1);
  border-radius: 12px;
}

.legal-icon-modern i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.legal-title-modern {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.legal-content-modern {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.legal-item-modern {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-label-modern {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--heading-color);
  font-size: 0.9rem;
}

.legal-label-modern i {
  color: var(--accent-color);
  font-size: 1rem;
}

.legal-label-modern strong {
  font-weight: 600;
}

.legal-value-modern {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: 1.5rem;
}

.legal-value-modern a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-value-modern a:hover {
  color: var(--heading-color);
  text-decoration: underline;
}

.about-hero-section {
  padding: 80px 0;
  background: var(--surface-color);
}

.about-hero-content {
  padding: 2rem 0;
}

.about-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.about-hero-description {
  font-size: 1.05rem;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-features-epic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-feature-epic {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 1.5rem;
  border: 2px solid rgba(26, 95, 63, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-feature-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(26, 95, 63, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.about-feature-epic:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(26, 95, 63, 0.15);
  transform: translateY(-5px);
}

.about-feature-icon-epic {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 95, 63, 0.1);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.about-feature-icon-epic i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.about-feature-title-epic {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.about-feature-text-epic {
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
}

.about-hero-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(26, 95, 63, 0.15);
}

.image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  overflow: hidden;
  border-radius: 16px;
}

.about-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.image-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 95, 63, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* About Page Responsive */
@media (max-width: 992px) {
  .about-team-section {
    padding: 60px 0;
  }
  
  .team-card-modern {
    margin-bottom: 2rem;
  }
  
  .legal-card-modern {
    margin-bottom: 2rem;
  }
  
  .about-hero-section {
    padding: 60px 0;
  }
  
  .about-hero-title {
    font-size: 2rem;
  }
  
  .about-features-epic-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .team-card-modern {
    padding: 2rem;
  }
  
  .team-title-modern {
    font-size: 1.75rem;
  }
  
  .team-feature-item-modern {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .team-feature-icon-modern {
    width: 40px;
    height: 40px;
  }
  
  .legal-card-modern {
    padding: 1.5rem;
  }
  
  .legal-title-modern {
    font-size: 1.25rem;
  }
  
  .legal-value-modern {
    padding-left: 1rem;
  }
  
  .about-hero-title {
    font-size: 1.75rem;
  }
  
  .about-hero-description {
    font-size: 0.95rem;
  }
  
  .about-features-epic-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .about-feature-epic {
    padding: 1.25rem;
  }
}

/*--------------------------------------------------------------
# Thanks Page
--------------------------------------------------------------*/
.thanks-content-epic {
  text-align: center;
  padding: 4rem 0;
}

.success-icon-epic {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 95, 63, 0.1);
  border-radius: 50%;
}

.success-icon-epic i {
  font-size: 4rem;
  color: var(--success-color);
}

.thanks-content-epic h1 {
  color: var(--heading-color);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.thanks-lead-epic {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 3rem;
}

.next-steps-epic h3 {
  color: var(--heading-color);
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.step-card-epic {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid rgba(26, 95, 63, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.step-card-epic:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 12px rgba(26, 95, 63, 0.15);
  transform: translateY(-5px);
}

.step-icon-epic {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  border-radius: 12px;
}

.step-icon-epic i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.step-card-epic h4 {
  color: var(--heading-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.step-card-epic p {
  color: var(--text-color);
  margin: 0;
}

.feature-highlight {
  text-align: center;
  padding: 2rem;
}

.feature-highlight i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.feature-highlight h4 {
  color: var(--heading-color);
  margin-bottom: 0.75rem;
}

.feature-highlight p {
  color: var(--text-color);
}

/*--------------------------------------------------------------
# PHP Email Form
--------------------------------------------------------------*/
.php-email-form .error-message {
  display: none;
  background: var(--danger-color);
  color: var(--contrast-color);
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 8px;
}

.php-email-form .sent-message {
  display: none;
  color: var(--contrast-color);
  background: var(--success-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 8px;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  border-radius: 8px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 996;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.scroll-top:hover {
  background: var(--heading-color);
  color: var(--contrast-color);
  text-decoration: none;
  transform: translateY(-5px);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--surface-color);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader:after {
  content: "";
  width: 50px;
  height: 50px;
  border: 4px solid rgba(26, 95, 63, 0.2);
  border-top-color: var(--accent-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Swiper Styles
--------------------------------------------------------------*/
.swiper-pagination-bullet {
  background: var(--accent-color);
}

.swiper-pagination-bullet-active {
  background: var(--heading-color);
}

/*--------------------------------------------------------------
# Utility Classes
--------------------------------------------------------------*/
.text-center {
  text-align: center;
}

.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.text-muted {
  color: rgba(26, 95, 63, 0.6);
}

.small {
  font-size: 0.875rem;
}

.me-1 { margin-right: 0.25rem; }
.me-2 { margin-right: 0.5rem; }
.me-3 { margin-right: 1rem; }

/*--------------------------------------------------------------
# Cookie Banner
--------------------------------------------------------------*/
.cookie-banner-epic {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface-color);
  border-top: 2px solid rgba(26, 95, 63, 0.2);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s ease-out;
}

.cookie-banner-epic.show {
  transform: translateY(0);
}

.cookie-content-epic {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookie-icon-epic {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 95, 63, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.cookie-icon-epic i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.cookie-text-epic {
  flex: 1;
  min-width: 250px;
}

.cookie-text-epic h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.cookie-text-epic p {
  font-size: 0.9rem;
  color: var(--text-color);
  margin: 0;
  line-height: 1.6;
}

.cookie-text-epic a {
  color: var(--accent-color);
  text-decoration: underline;
}

.cookie-text-epic a:hover {
  color: var(--heading-color);
}

.cookie-actions-epic {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cookie-accept:hover {
  background: var(--heading-color);
  border-color: var(--heading-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(26, 95, 63, 0.2);
}

.btn-cookie-settings {
  background: transparent;
  color: var(--text-color);
  border: 2px solid rgba(26, 95, 63, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cookie-settings:hover {
  background: rgba(26, 95, 63, 0.1);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .cookie-content-epic {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-actions-epic {
    width: 100%;
    flex-direction: column;
  }
  
  .btn-cookie-accept,
  .btn-cookie-settings {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Hero Section Animations - Redesigned
--------------------------------------------------------------*/
.hero-canvas-full {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(26, 95, 63, 0.03) 0%, 
    rgba(45, 90, 61, 0.05) 50%, 
    rgba(26, 95, 63, 0.03) 100%);
  z-index: 0;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Floating Cards Animations */
.floating-cards {
  position: relative;
  width: 100%;
  height: 400px;
}

.floating-card {
  position: absolute;
  background: var(--surface-color);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 12px rgba(26, 95, 63, 0.15);
  z-index: 10;
  border: 2px solid rgba(26, 95, 63, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.floating-card.card-1 {
  top: 0;
  left: 0;
  animation-delay: 0.2s;
  animation: floatCard1 6s ease-in-out infinite;
}

.floating-card.card-2 {
  top: 20%;
  right: 0;
  animation-delay: 0.4s;
  animation: floatCard2 7s ease-in-out infinite;
}

.floating-card.card-3 {
  bottom: 20%;
  left: 10%;
  animation-delay: 0.6s;
  animation: floatCard3 8s ease-in-out infinite;
}

.floating-card.card-4 {
  bottom: 0;
  right: 10%;
  animation-delay: 0.8s;
  animation: floatCard4 6.5s ease-in-out infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard1 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(1deg);
  }
}

@keyframes floatCard2 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(-1deg);
  }
}

@keyframes floatCard3 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(1deg);
  }
}

@keyframes floatCard4 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(-1deg);
  }
}

.floating-card:hover {
  box-shadow: 0 8px 24px rgba(26, 95, 63, 0.25);
  border-color: var(--accent-color);
  transform: translateY(-10px) scale(1.05) !important;
  animation-play-state: paused;
}

.floating-cards {
  overflow: hidden;
}

.floating-card .card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  border-radius: 10px;
  transition: all 0.3s ease;
  animation: iconPulse 2s ease-in-out infinite;
}

.floating-card:hover .card-icon {
  background: var(--heading-color);
  transform: scale(1.1) rotate(5deg);
  animation-play-state: paused;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.floating-card i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.floating-card span {
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Hero Badge Animation */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(26, 95, 63, 0.1);
  color: var(--heading-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(26, 95, 63, 0.2);
  animation: badgeSlideIn 0.6s ease-out;
}

@keyframes badgeSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero Title Animation */
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  animation: titleFadeIn 1s ease-out;
}

@keyframes titleFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.highlight-text {
  color: var(--accent-color);
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(26, 95, 63, 0.2);
  border-radius: 2px;
  animation: underlineGrow 1s ease-out 0.5s forwards;
  transform: scaleX(0);
  transform-origin: left;
}

@keyframes underlineGrow {
  to {
    transform: scaleX(1);
  }
}

/* Hero Description Animation */
.hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 2rem;
  animation: descriptionFadeIn 1.2s ease-out;
}

@keyframes descriptionFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero CTA Animation */
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: ctaFadeIn 1.4s ease-out;
}

@keyframes ctaFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Guarantee Animation */
.hero-guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
  font-size: 0.9rem;
  animation: guaranteeFadeIn 1.6s ease-out;
}

@keyframes guaranteeFadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-guarantee i {
  color: var(--success-color);
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* Scroll Indicator Animation */
.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
  animation: scrollIndicatorBounce 2s ease-in-out infinite;
}

@keyframes scrollIndicatorBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.scroll-down:hover {
  color: var(--accent-color);
  text-decoration: none;
  animation-play-state: paused;
}

.scroll-down i {
  font-size: 1.5rem;
  animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .section-title h2 {
    font-size: 2rem;
  }
  
  .pricing-epic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-epic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .section-title p {
    font-size: 1rem;
  }
  
  .pricing-epic-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .features-epic-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-top {
    padding-bottom: 30px;
  }
  
  .footer-column {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  /* Hero Section */
  .hero {
    min-height: auto;
    padding: 80px 0 40px;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  
  .floating-cards {
    display: none;
  }
  
  .hero::before {
    display: none;
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
  
  /* Sections */
  section,
  .section {
    padding: 40px 0;
  }
  
  .section-title {
    padding-bottom: 30px;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .section-title p {
    font-size: 0.9rem;
  }
  
  /* Pricing Cards */
  .pricing-card-epic {
    padding: 1.5rem;
  }
  
  .pricing-header-epic h3 {
    font-size: 1.5rem;
  }
  
  .amount-epic {
    font-size: 3rem;
  }
  
  /* Feature Cards */
  .feature-card-epic {
    padding: 1.5rem;
  }
  
  .feature-content-wrapper h3 {
    font-size: 1.25rem;
  }
  
  /* Footer */
  .footer-modern {
    padding: 40px 0 0;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-social-modern {
    justify-content: center;
  }
  
  /* Cookie Banner */
  .cookie-content-epic {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .cookie-actions-epic {
    width: 100%;
    flex-direction: column;
  }
  
  .btn-cookie-accept,
  .btn-cookie-settings {
    width: 100%;
  }
  
  /* Buttons */
  .btn-lg {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  /* Page Title */
  .page-title {
    padding: 60px 0 30px;
  }
  
  .page-title h1 {
    font-size: 1.75rem;
  }
  
  /* Contact CTA */
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .section-title h2 {
    font-size: 1.35rem;
  }
  
  .pricing-card-epic {
    padding: 1.25rem;
  }
  
  .amount-epic {
    font-size: 2.5rem;
  }
  
  .currency-epic {
    font-size: 1.25rem;
  }
  
  .period-epic {
    font-size: 1rem;
  }
  
  .feature-card-epic {
    padding: 1.25rem;
  }
  
  .navmenu-modern {
    width: 100%;
    right: -100%;
  }
  
  .navmenu-modern.active {
    right: 0;
  }
  
  /* Page Content Styles */
  .page-content-epic {
    font-size: 1rem;
    line-height: 1.8;
  }
  
  .page-content-epic h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .page-content-epic h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .page-content-epic ul,
  .page-content-epic ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .page-content-epic li {
    margin-bottom: 0.5rem;
  }
  
  /* Contact Form */
  .contact-form-epic {
    padding: 1.5rem;
  }
  
  .form-group-epic {
    margin-bottom: 1.25rem;
  }
  
  .form-group-epic label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  
  .form-control-epic {
    font-size: 0.95rem;
    padding: 0.75rem;
  }
  
  /* FAQ Items */
  .faq-item-epic {
    margin-bottom: 1rem;
  }
  
  .faq-question-epic {
    font-size: 1rem;
    padding: 1rem;
  }
  
  .faq-answer-epic {
    font-size: 0.95rem;
    padding: 0 1rem 1rem;
  }
  
  /* Services Cards */
  .service-card-epic {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .service-card-epic h3 {
    font-size: 1.25rem;
  }
  
  /* Team Cards */
  .team-card-modern {
    padding: 1.5rem;
  }
  
  .team-card-modern h3 {
    font-size: 1.5rem;
  }
  
  /* Contact Info */
  .contact-info-epic {
    padding: 1.5rem;
  }
  
  .info-item-epic {
    margin-bottom: 1.5rem;
  }
  
  .info-content-epic h4 {
    font-size: 1rem;
  }
  
  /* Thanks Page */
  .thanks-content-epic {
    padding: 1.5rem 0;
  }
  
  .thanks-content-epic h1 {
    font-size: 1.75rem;
  }
  
  .step-card-epic {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .step-card-epic h4 {
    font-size: 1.1rem;
  }
  
  /* Services Page Styles */
  .services-hero-section {
    padding: 60px 0;
  }
  
  .services-hero-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .services-hero-description {
    font-size: 0.95rem;
  }
  
  .services-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-item-modern {
    text-align: center;
  }
  
  .stat-number-modern {
    font-size: 2rem;
  }
  
  .stat-label-modern {
    font-size: 0.85rem;
  }
  
  .service-card-modern {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .service-title-modern {
    font-size: 1.25rem;
  }
  
  .service-description-modern {
    font-size: 0.9rem;
  }
  
  .service-features-modern {
    font-size: 0.85rem;
  }
  
  /* Terms & Cookie Policy Pages */
  .page-content-epic h2 {
    color: var(--heading-color);
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(26, 95, 63, 0.2);
  }
  
  .page-content-epic h3 {
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
  }
  
  .page-content-epic p {
    margin-bottom: 1rem;
    line-height: 1.8;
  }
  
  .page-content-epic ul,
  .page-content-epic ol {
    margin-bottom: 1.5rem;
  }
  
  .page-content-epic li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
  }
  
  .contact-info {
    background: rgba(26, 95, 63, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
  }
  
  .contact-info p {
    margin-bottom: 0.5rem;
  }
  
  .alert {
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
  }
  
  .alert-info {
    background: rgba(26, 95, 63, 0.05);
    border-color: var(--accent-color);
  }
  
  .alert h4 {
    color: var(--heading-color);
    margin-bottom: 0.75rem;
  }
}
