/* Main CSS File for domain.com */

/* Global Styles */
:root {
  --amber: #ff6f00;
  --ultramarine: #2c3ae9;
  --beige: #e8e6e1;
  --white: #ffffff;
  --neon: #00ffc6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
  font-family: "Arial", sans-serif;
  font-size: 16px;
}

body {
  background-color: var(--white);
  color: #333;
  line-height: 1.6;
}

section[id] {
  scroll-margin-top: 40px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  color: var(--ultramarine);
}

a {
  color: var(--ultramarine);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--amber);
}

img {
  max-width: 100%;
  height: auto;
}
form a {
  color: #3fff00;
}
.btn {
  display: inline-block;
  background-color: var(--amber);
  color: var(--white);
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--ultramarine);
  transform: translateY(-2px);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: var(--amber);
}

/* Header and Navigation */
header {
  background-color: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--amber);
}

/* Hamburger Menu (CSS-only) */
.hamburger-menu {
  display: none;
}

#menu-toggle {
  display: none;
}

.menu-btn {
  display: none;
  cursor: pointer;
  padding: 10px;
}

.menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--amber);
  transition: all 0.3s ease;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 1.5rem;
}

.nav-menu a {
  font-weight: 600;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--amber);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 90vh;
  background-image: url("../img/AqHW3.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: var(--beige);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about-text {
  flex: 1;
}

.about-img {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
  padding: 5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  color: var(--amber);
  margin-bottom: 1rem;
}

/* Benefits Section */
.benefits {
  padding: 5rem 0;
  background-color: var(--beige);
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.benefit-item {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--amber);
  margin-bottom: 1rem;
}

/* Stages Section */
.stages {
  padding: 5rem 0;
}

.stages-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.stages-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: var(--amber);
  transform: translateX(-50%);
}

.stage {
  position: relative;
  margin-bottom: 3rem;
}

.stage:nth-child(odd) {
  padding-right: calc(50% + 30px);
  text-align: right;
}

.stage:nth-child(even) {
  padding-left: calc(50% + 30px);
}

.stage-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--ultramarine);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 2;
}

.stage-content {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background-color: var(--beige);
}

/* CSS-only Slider */
.testimonial-slider {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: bold;
  color: var(--amber);
}

/* CSS Slider Navigation */
.testimonial-slider input {
  display: none;
}

.testimonial-slider label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: var(--ultramarine);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 2;
}

.testimonial-slider .prev-label {
  left: 10px;
}

.testimonial-slider .next-label {
  right: 10px;
}

/* Order Form Section */
.order-form-section {
  padding: 5rem 0;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--ultramarine) 0%, var(--amber) 100%);
  border-radius: 10px;
  padding: 2rem;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-title {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--white);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid transparent;
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.9);
}

.form-control:focus {
  outline: none;
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(0, 255, 198, 0.3);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M8 12l-6-6h12l-6 6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

select.form-control option {
  background-color: var(--beige);
  color: #333;
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 10px;
  width: 18px;
  height: 18px;
}

.form-submit {
  width: 100%;
  padding: 15px;
  border: none;
  background-color: var(--neon);
  color: var(--ultramarine);
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-submit:hover {
  background-color: var(--white);
  transform: translateY(-3px);
}

/* Contacts Section */
.contacts {
  padding: 5rem 0;
  background-color: var(--beige);
}

.contacts-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h3 {
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  margin-bottom: 1rem;
}

.contact-icon {
  margin-right: 1rem;
  color: var(--ultramarine);
}

.map-container {
  flex: 1;
  min-width: 300px;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  background-color: var(--ultramarine);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h4 {
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: var(--white);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--neon);
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--amber);
  margin-bottom: 1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Policy Pages */
.policy-page {
  padding: 5rem 0;
}

.policy-container {
  max-width: 800px;
  margin: 5rem auto;
  background-color: var(--white);
  padding: 2rem;
  border: 2px solid var(--amber);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.policy-title {
  color: var(--ultramarine);
  margin-bottom: 2rem;
  text-align: center;
}

.policy-content h2 {
  color: var(--amber);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content p {
  margin-bottom: 1rem;
}

.policy-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

/* Thank You Page */
.thank-you-container {
  max-width: 600px;
  margin: 5rem auto;
  padding: 2rem;
  background-color: var(--white);
  border: 2px solid var(--amber);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--amber);
  margin-bottom: 1rem;
}

.thank-you-title {
  color: var(--ultramarine);
  margin-bottom: 1.5rem;
}

.back-to-home {
  display: inline-block;
  margin-top: 1.5rem;
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background-color: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  display: grid;
  margin-bottom: 1rem;
  border: 1px solid var(--beige);
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  background-color: var(--beige);
  padding: 1rem;
  cursor: pointer;
  position: relative;
  font-weight: bold;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1rem;
  background-color: var(--white);
}

/* Checkbox Hack for FAQ */
.faq-item input[type="checkbox"] {
  display: none;
}

.faq-item input[type="checkbox"]:checked ~ .faq-answer {
  max-height: 500px;
  padding: 1rem;
}

.faq-item input[type="checkbox"]:checked ~ .faq-question::after {
  content: "-";
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(44, 58, 233, 0.95);
  color: var(--white);
  padding: 1rem;
  text-align: center;
  z-index: 9999;
  display: none;
}

.cookie-consent.show {
  display: block;
  animation: slideUp 0.5s forwards;
}

.cookie-text {
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.cookie-accept {
  background-color: var(--amber);
  color: var(--white);
}

.cookie-decline {
  background-color: var(--white);
  color: var(--ultramarine);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

/* Media Queries */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .about-content {
    flex-direction: column;
  }

  .stages-timeline::before {
    left: 30px;
  }

  .stage:nth-child(odd),
  .stage:nth-child(even) {
    padding-left: 80px;
    padding-right: 0;
    text-align: left;
  }

  .stage-number {
    left: 30px;
  }
}

@media (max-width: 768px) {
  .hamburger-menu {
    display: block;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .menu-btn {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 60px);
    background-color: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    box-shadow: 5px 0 10px rgba(0, 0, 0, 0.1);
  }

  #menu-toggle:checked ~ .nav-menu {
    left: 0;
  }

  .nav-menu li {
    margin: 1.5rem 0;
  }

  .nav-menu a {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero {
    height: 80vh;
  }
}
