/* Main styles for domain website */

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}

body {
  font-family: "Open Sans", Arial, sans-serif;
  background-color: #002b36;
  color: #ffffff;
  line-height: 1.6;
}

section[id] {
  scroll-margin-top: 40px;
}

a {
  color: #ff6f00;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffb74d;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  background-color: #ff6f00;
  color: #ffffff;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #ffb74d;
  transform: translateY(-2px);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #ff6f00;
  margin: 10px auto;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 43, 54, 0.95);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
}

.logo a {
  color: #ffffff;
}

.logo a:hover {
  color: #ff6f00;
}

/* Burger Menu with CSS */
.burger-menu {
  display: none;
}

.burger-btn {
  display: none;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  color: #ffffff;
  font-weight: 600;
}

.nav-menu a:hover {
  color: #ff6f00;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-position: center;
  background-size: cover;
  background-image: linear-gradient(rgba(0, 43, 54, 0.8), rgba(0, 43, 54, 0.8)),
    url("img/gtVEv.jpg");
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: fadeIn 1s ease-in;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #b0bec5;
  animation: fadeIn 1.5s ease-in;
}

.hero .btn {
  animation: fadeIn 2s ease-in;
}

/* About Section */
.about {
  padding: 80px 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Advantages Section */
.advantages {
  padding: 80px 0;
  background-color: rgba(224, 247, 250, 0.05);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.advantage-card {
  background-color: rgba(224, 247, 250, 0.1);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.advantage-card h3 {
  font-size: 1.5rem;
  margin: 15px 0;
  color: #ff6f00;
}

.advantage-card p {
  color: #b0bec5;
}

/* Services Section */
.services {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background-color: rgba(224, 247, 250, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 20px;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ff6f00;
}

.service-content p {
  color: #b0bec5;
  margin-bottom: 15px;
}

/* Process Section */
.process {
  padding: 80px 0;
  background-color: rgba(224, 247, 250, 0.05);
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
  position: relative;
}

.process-steps:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(255, 111, 0, 0.3);
  z-index: 1;
}

.step {
  width: 22%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #ff6f00;
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ff6f00;
}

.step p {
  font-size: 0.9rem;
  color: #b0bec5;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial {
  background-color: rgba(224, 247, 250, 0.1);
  border-radius: 8px;
  padding: 30px;
  position: relative;
}

.testimonial:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 5rem;
  color: rgba(255, 111, 0, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  color: #b0bec5;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin: 0;
}

.testimonial-author p {
  font-size: 0.9rem;
  color: #b0bec5;
}

/* Contact Form Section */
.contact {
  padding: 80px 0;
  background-color: rgba(224, 247, 250, 0.05);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(224, 247, 250, 0.1);
  padding: 40px;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(176, 190, 197, 0.3);
  border-radius: 4px;
  background-color: rgba(0, 43, 54, 0.3);
  color: #ffffff;
}

.form-control:focus {
  outline: none;
  border-color: #ff6f00;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF6F00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
}

/* Custom select styling */
.form-group select option {
  background-color: #002b36;
  color: #ffffff;
}

.checkbox-group {
  margin-bottom: 20px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  margin-bottom: 10px;
}

.checkbox-label input {
  margin-top: 5px;
  margin-right: 10px;
}

.error-text {
  color: #ff3d00;
  font-size: 0.9rem;
  margin-top: 5px;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: none;
}

.faq-label {
  display: block;
  padding: 15px 20px;
  background-color: rgba(224, 247, 250, 0.1);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.faq-label:after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-question:checked ~ .faq-label {
  background-color: rgba(255, 111, 0, 0.2);
}

.faq-question:checked ~ .faq-label:after {
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: rgba(224, 247, 250, 0.05);
  transition: max-height 0.5s ease;
}

.faq-question:checked ~ .faq-answer {
  max-height: 500px;
}

.faq-content {
  padding: 20px;
  color: #b0bec5;
}

/* Footer */
footer {
  background-color: rgba(0, 30, 40, 0.95);
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ff6f00;
}

.footer-column p,
.footer-column address {
  color: #b0bec5;
  margin-bottom: 15px;
  font-style: normal;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(176, 190, 197, 0.2);
}

.footer-bottom p {
  color: #b0bec5;
  font-size: 0.9rem;
}

/* Thank you & Policy Pages */
.policy-page,
.thank-you-page {
  padding: 120px 0;
}

.policy-container,
.thank-you-container {
  word-break: break-word;
  overflow-wrap: break-word;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(224, 247, 250, 0.1);
  border-radius: 8px;
  padding: 40px;
  border: 1px solid rgba(255, 111, 0, 0.3);
}

.policy-container h1,
.thank-you-container h1 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ff6f00;
}

.policy-container h2 {
  font-size: 1.5rem;
  margin: 30px 0 15px;
  color: #ff6f00;
}

.policy-container p,
.thank-you-container p {
  margin-bottom: 15px;
  color: #b0bec5;
}

.policy-container ul,
.policy-container ol {
  margin: 15px 0;
  padding-left: 20px;
}

.policy-container li {
  margin-bottom: 8px;
  color: #b0bec5;
}

.back-to-home {
  display: inline-block;
  margin-top: 20px;
}

/* Cookie Consent Popup */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 43, 54, 0.95);
  padding: 20px;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-text {
  margin-right: 20px;
}

.cookie-consent .btn {
  white-space: nowrap;
}

.hidden {
  display: none;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }

  .process-steps:before {
    display: none;
  }

  .step {
    width: 48%;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .burger-btn {
    display: block;
    font-size: 24px;
    color: #ffffff;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(0, 43, 54, 0.95);
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }

  .burger-menu:checked ~ .nav-menu {
    max-height: 300px;
    padding: 20px 0;
  }

  .nav-menu li {
    margin: 10px 20px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .step {
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .cookie-consent {
    flex-direction: column;
    text-align: center;
  }

  .cookie-text {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .form-container {
    padding: 20px;
  }

  .policy-container,
  .thank-you-container {
    padding: 20px;
  }
}
