/* Base Styles */
:root {
    --primary-color: #1a5f1a; /* Royal Green */
    --primary-light: #2e8b2e;
    --primary-dark: #0d3b0d;
    --secondary-color: #f8f8f8;
    --accent-color: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-color: #ffffff;
    --bg-secondary: #f5f5f5;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}
/* Success Popup Styles */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.success-popup.active .popup-content {
    transform: translateY(0);
}

.popup-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.popup-title {
    margin-bottom: 1rem;
    color: #333;
}

.popup-message {
    margin-bottom: 1.5rem;
    color: #666;
}
[data-theme="dark"] {
    --primary-color: #1a5f1a;
    --primary-light: #2e8b2e;
    --primary-dark: #0d3b0d;
    --secondary-color: #1a1a1a;
    --accent-color: #ffffff;
    --text-color: #f5f5f5;
    --text-light: #cccccc;
    --text-lighter: #999999;
    --bg-color: #121212;
    --bg-secondary: #1e1e1e;
    --border-color: #333333;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 95, 26, 0.2);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

.divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 40px;
    border-radius: 2px;
}

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

.loader {
    width: 100px;
    height: 100px;
    position: relative;
}

.loader-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    perspective: 800px;
}

.loader-line-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.loader-line-wrap:nth-child(1) {
    animation: spin 1s infinite linear;
    animation-delay: -1.1s;
}

.loader-line-wrap:nth-child(2) {
    animation: spin 1s infinite linear;
    animation-delay: -1s;
}

.loader-line-wrap:nth-child(3) {
    animation: spin 1s infinite linear;
    animation-delay: -0.9s;
}

.loader-line-wrap:nth-child(4) {
    animation: spin 1s infinite linear;
    animation-delay: -0.8s;
}

.loader-line-wrap:nth-child(5) {
    animation: spin 1s infinite linear;
    animation-delay: -0.7s;
}

.loader-line {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Navigation */

/* Redesigned Rounded Navbar */

/* Isolated Redesigned Rounded Navbar Styles */
.navbar-rounded {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  max-width: 1200px;
  background: var(--bg-color);
  border-radius: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  z-index: 999;
  margin-top: 20px;
  transition: var(--transition);
  padding-left: 22px;
  padding-right: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme="dark"] .navbar-rounded {
  background: var(--bg-secondary);
  box-shadow: 0 4px 24px rgba(0,0,0,0.30);
}

.navbar-rounded .navbar-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-rounded .navbar-brand-rounded {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-around;
    padding: 12px;
}

.navbar-rounded .logo-rounded {
  display: flex;
  align-items: center;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary-color);
  gap: 10px;
  text-shadow: 0 2px 8px rgba(26,95,26,0.08);
}

.navbar-rounded .logo-rounded {
  cursor: pointer;
  z-index: 1000;
  position: relative;
}

.navbar-rounded .logo-rounded img {
  height: 44px;
  border-radius: 12px;
  transition: var(--transition);
}

.navbar-rounded .logo-rounded.active img {
  transform: scale(0.95);
}

.navbar-rounded .navbar-menu-rounded {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

.navbar-rounded .navbar-nav-rounded {
  display: flex;
  align-items: center;
  gap: 18px;
}

.navbar-rounded .nav-item-rounded {
  position: relative;
  border-radius: 24px;
  transition: var(--transition);
}

.navbar-rounded .nav-link-rounded {
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 24px;
  color: var(--text-color);
  background: transparent;
  transition: var(--transition);
  font-size: 1.05rem;
  position: relative;
}

.navbar-rounded .nav-link-rounded.active,
.navbar-rounded .nav-link-rounded:hover {
  background: var(--primary-color);
  color: var(--accent-color);
  box-shadow: 0 2px 8px rgba(26,95,26,0.10);
}

.navbar-rounded .theme-toggle-rounded {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 1.3rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
}

.navbar-rounded .theme-toggle-rounded i {
  position: absolute;
  transition: var(--transition);
}
.navbar-rounded .theme-toggle-rounded .fa-moon { opacity: 1; }
.navbar-rounded .theme-toggle-rounded .fa-sun { opacity: 0; }
[data-theme="dark"] .navbar-rounded .theme-toggle-rounded .fa-moon { opacity: 0; }
[data-theme="dark"] .navbar-rounded .theme-toggle-rounded .fa-sun { opacity: 1; }

@media (max-width: 992px) {
  .navbar-rounded {
    width: 95vw;
    padding: 0 12px;
    border-radius: 32px;
  }
  .navbar-rounded .logo-rounded img {
    height: 36px;
  }
  .navbar-rounded .navbar-nav-rounded {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .navbar-rounded {
    width: 100vw;
    left: 0;
    transform: none;
    border-radius: 0 0 32px 32px;
    margin-top: 0;
    padding: 0 16px;
  }
  .navbar-rounded .navbar-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
  }
  .navbar-rounded .navbar-menu-rounded {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    transition: var(--transition);
    z-index: 999;
  }
  .navbar-rounded .navbar-menu-rounded.active {
    right: 0;
  }
  .navbar-rounded .navbar-nav-rounded {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .navbar-rounded .nav-link-rounded {
    font-size: 1.2rem;
    padding: 15px 25px;
    border-radius: 25px;
    transition: var(--transition);
  }
  [data-theme="dark"] .navbar-menu-rounded {
    background-color: var(--bg-secondary);
  }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 95, 26, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
}

[data-theme="dark"] .hero {
    background: linear-gradient(135deg, rgba(26, 95, 26, 0.2) 0%, rgba(30, 30, 30, 0) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(26, 95, 26, 0.05) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    max-width: 700px;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-light);
    font-size: 0.9rem;
    cursor: pointer;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--text-light);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
    margin-top: 10px;
}

.wheel {
    width: 5px;
    height: 8px;
    background-color: var(--text-light);
    border-radius: 3px;
    animation: scroll 2s infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(15px);
    }
}

/* Services Section */
.services {
    background-color: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--bg-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .service-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(26, 95, 26, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: var(--accent-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Onboarding Section */
.onboarding {
    background-color: var(--bg-color);
}

.step-indicator {
    display: flex;
    justify-content: center;
    margin: 0 auto 50px;
    position: relative;
    max-width: 600px;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50px;
    right: 50px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color) 50%, var(--border-color) 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all 0.5s ease;
    z-index: 1;
}

.step-indicator.step-2::before {
    background-position: center bottom;
}

.step-indicator.step-3::before {
    background-position: left bottom;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 30px;
    cursor: pointer;
    text-align: center;
    min-width: 150px;
}

.step i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--border-color);
    color: var(--text-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.step.active i {
    background-color: var(--primary-color);
    color: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(26,95,26,0.3);
    border-color: var(--primary-light);
}

.step.completed i {
    background-color: var(--primary-color);
    color: var(--accent-color);
}

.step::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    transition: all 0.3s ease;
}

.step.active::after {
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(26,95,26,0.5);
}

.step span {
    font-weight: 500;
    color: var(--text-light);
    transition: all 0.3s ease;
    font-size: 0.95rem;
    margin-top: 5px;
    opacity: 0.7;
}

.step.active span {
    color: var(--primary-color);
    font-weight: 600;
    opacity: 1;
}

@media (max-width: 768px) {
    .step-indicator {
        padding: 0 20px;
    }
    
    .step {
        padding: 0 15px;
        min-width: auto;
    }
    
    .step i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step span {
        font-size: 0.85rem;
    }
    
    .step-indicator::before {
        left: 40px;
        right: 40px;
        top: 20px;
    }
    
    .step.active i {
        transform: scale(1.05);
    }
}

.step-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.step-panel.active {
    display: block;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.category-card {
    background-color: var(--bg-secondary);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.category-card.selected {
    background-color: rgba(26, 95, 26, 0.1);
    border-color: var(--primary-color);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background-color: rgba(26, 95, 26, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.category-card.selected .category-icon {
    background-color: var(--primary-color);
    color: var(--accent-color);
}

.category-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.category-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    align-items: center;
}

.step-actions .btn {
    margin-left: 15px;
}

.step-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-color);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.step-back-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateX(-3px);
}

.step-back-btn i {
    font-size: 1.1rem;
}

.step-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-color);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.step-back-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateX(-3px);
}

.step-back-btn i {
    font-size: 1.1rem;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: var(--bg-secondary);
    border-radius: 10px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

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

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background-color: var(--bg-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    text-align: center;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.slider-prev,
.slider-next {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 5px 15px;
    transition: var(--transition);
}

.slider-prev:hover,
.slider-next:hover {
    color: var(--primary-color);
}

.slider-dots {
    display: flex;
    margin: 0 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(26, 95, 26, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 20px;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-text p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form {
    flex: 1;
    background-color: var(--bg-secondary);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.dynamic-form .category-fields {
    display: none;
}

.dynamic-form .category-fields.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 95, 26, 0.2);
}

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

.form-section-title {
    margin: 30px 0 15px;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group.half {
    flex: 1;
    margin-bottom: 0;
}

.radio-group {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.radio-options {
    display: flex;
    gap: 20px;
}

.radio-options label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.radio-options input[type="radio"] {
    margin: 0;
    cursor: pointer;
}

.rating-select {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.rating-select input[type="radio"] {
    display: none;
}

.rating-select label {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.rating-select input[type="radio"]:checked + label {
    background-color: var(--primary-color);
    color: var(--accent-color);
    border-color: var(--primary-color);
}

.conditional-section {
    padding-left: 20px;
    border-left: 2px solid var(--border-color);
    margin: 15px 0 30px;
}

input[type="file"] {
    padding: 10px;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
}

input[type="file"]:hover {
    border-color: var(--primary-color);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group.half {
        margin-bottom: 15px;
    }
    
    .radio-options {
        flex-direction: column;
        gap: 10px;
    }
    
    .rating-select {
        flex-wrap: wrap;
    }
    
    .form-actions {
        flex-direction: column-reverse;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-logo p {
    margin: 15px 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(26, 95, 26, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-newsletter h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-newsletter p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-newsletter .form-group {
    position: relative;
}

.footer-newsletter input {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    background-color: var(--bg-color);
    color: var(--text-color);
}

.footer-newsletter button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 45px;
    background-color: var(--primary-color);
    color: var(--accent-color);
    border: none;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background-color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-light);
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Particles JS */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .hero-image {
        width: 60%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        padding: 4  0px;
        transition: var(--transition);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }
    
    [data-theme="dark"] .navbar-menu {
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .navbar-menu.active {
        right: 0;
    }
    
    .navbar-nav {
        flex-direction: column;
        margin-bottom: 30px;
    }
    
    .nav-item {
        margin: 10px 0;
    }
    
    .auth-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .auth-buttons .btn {
        margin: 5px 0;
        width: 100%;
    }
    
    .navbar-toggler {
        display: block;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .step-indicator {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .step-indicator::before {
        display: none;
    }
    
    .step {
        flex: 0 0 calc(33.333% - 20px);
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}