/* Base Styles and Variables */
:root {
  --blue: #00203FFF;
  --light-blue: #2a4367;
  --orange: #39CCCC;
  --white: #ffffff;
  --gray: #f7f7f8;
  --dark-gray: #333333;
  --light-gray: #666666;
  --border-color: #e0e0e0;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --container-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.text-orange {
  color: var(--orange);
}

.bg-white {
  background-color: var(--white);
}

.bg-gray {
  background-color: var(--gray);
}

/* Button Styles */
.btn-primary {
  display: inline-block;
  background-color: var(--orange);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--blue);
}

.section-header p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--light-gray);
  font-size: 1.1rem;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background-color: White;
  transition: var(--transition);
}

.navbar.sticky {
  background-color: var(--white);
  padding: 12px 0;
  box-shadow: var(--shadow);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue);
}

.logo-subtext {
  margin-left: 10px;
  font-size: 0.9rem;
  color: var(--light-gray);
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
}

.nav-links li {
  margin-right: 30px;
}

.nav-links a {
  color: var(--blue);
  font-weight: 500;
  position: relative;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--orange);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  color: var(--blue);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  background-color: var(--blue);
  color: var(--white);
  padding: 160px 0 80px;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.stat-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: var(--border-radius);
  min-width: 100px;
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--orange);
}

.stat-label {
  font-size: 0.9rem;
}

.contact-form-container {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-form-container h2 {
  color: var(--blue);
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  color: var(--dark-gray);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.privacy-note {
  text-align: center;
  margin-top: 15px;
  font-size: 0.8rem;
  color: var(--light-gray);
}

.trust-badges {
  background-color: var(--gray);
  padding: 30px 0;
}

.badges-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.badge {
  background-color: var(--white);
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.badge span {
  font-weight: 600;
  color: var(--blue);
  font-size: 0.8rem;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 30px;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--blue);
}

.service-card p {
  margin-bottom: 20px;
  color: var(--light-gray);
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.benefits-list i {
  color: var(--orange);
  margin-right: 10px;
  margin-top: 4px;
  font-size: 0.9rem;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--blue);
}

.about-content p {
  margin-bottom: 20px;
  color: var(--light-gray);
}

.features {
  margin-top: 40px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-icon {
  background-color: var(--white);
  height: 60px;
  width: 60px;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.feature-icon i {
  color: var(--orange);
  font-size: 1.5rem;
}

.feature-text h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--blue);
}

.feature-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.benefits-card {
  background-color: var(--blue);
  color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
}

.benefits-card h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.benefit-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

.benefit-box h4 {
  margin-bottom: 10px;
}

.benefit-box p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.benefit-cta {
  margin-top: 30px;
}

/* Work Process Section */
.process-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.step-number {
  font-size: 2.5rem;
  color: var(--orange);
  font-weight: 700;
  margin-right: 20px;
  line-height: 1;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--blue);
}

.step-content p {
  color: var(--light-gray);
  font-size: 0.95rem;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  min-width: 40px;
  background-color: var(--blue);
  color: var(--white);
  border-radius: 50%;
  margin-left: 20px;
}

.process-cta {
  text-align: center;
  margin-top: 60px;
}

.process-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--blue);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact-form-box {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-form-box h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--blue);
}

.info-box {
  background-color: var(--blue);
  color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  margin-bottom: 30px;
}

.info-box h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.info-icon {
  height: 40px;
  width: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--orange);
  color: var(--white);
  border-radius: 50%;
  margin-right: 15px;
}

.info-item h4 {
  margin-bottom: 5px;
}

.info-item p {
  color: rgba(255, 255, 255, 0.8);
}

.hours-box {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.hours-box h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--blue);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:first-child {
  font-weight: 500;
}

/* Footer */
.footer {
  background-color: var(--blue);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo h3 {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.footer-logo span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col p {
  margin: 15px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--orange);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--orange);
  bottom: -10px;
  left: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

#backToTop {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

#backToTop:hover {
  background-color: var(--orange);
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: -100px;
  right: 20px;
  background-color: var(--white);
  color: var(--dark-gray);
  padding: 15px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  min-width: 300px;
  z-index: 1001;
  transition: bottom 0.3s ease;
}

.toast.show {
  bottom: 20px;
}

.toast-content {
  display: flex;
  align-items: center;
  flex: 1;
}

.toast-content i {
  color: #28a745;
  font-size: 1.5rem;
  margin-right: 15px;
}

.toast-message {
  display: flex;
  flex-direction: column;
}

#toast-title {
  font-weight: 600;
}

#toast-description {
  font-size: 0.9rem;
  color: var(--light-gray);
}

.toast-close {
  background: none;
  border: none;
  color: var(--light-gray);
  cursor: pointer;
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--orange);
  animation: progress 5s linear forwards;
}

@keyframes progress {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

/* Animation */
.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (min-width: 768px) {
  .logo-subtext {
    display: block;
  }
  
  .process-container::before {
    content: '';
    position: absolute;
    height: 80%;
    width: 1px;
    background-color: var(--border-color);
    left: 20px;
    top: 50px;
    z-index: -1;
  }
}

@media (max-width: 992px) {
  .section {
    padding: 60px 0;
  }
  
  .hero-section {
    padding: 140px 0 60px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-links {
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
  }
  
  .nav-links li {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .hero-section {
    padding: 120px 0 50px;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .toast {
    min-width: auto;
    width: calc(100% - 40px);
  }
}
