/* 
* Main Stylesheet for domain
* Color palette:
* Background: #1A1A2E (dark purple)
* Accents: #E94560 (bright pink), #0F3460 (indigo)
* Text: #FFFFFF, secondary: #A0A0A0
* Fonts: Poppins, PT Sans
*/

/* ===== RESET & BASE STYLES ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #1a1a2e;
  color: #ffffff;
  line-height: 1.6;
  font-size: 16px;
}

section[id] {
  scroll-margin-top: 80px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #e94560;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: #ffffff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.8em;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1em;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #e94560, #0f3460);
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-primary {
  background: linear-gradient(to right, #e94560, #0f3460);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(to right, #0f3460, #e94560);
  box-shadow: 0 6px 18px rgba(233, 69, 96, 0.5);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #e94560;
  border: 2px solid #e94560;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #e94560;
  color: #ffffff;
}

/* ===== LAYOUT ===== */
.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: #0f3460;
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}

.logo:hover,
.logo:focus {
  color: #e94560;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 21px;
  position: relative;
  z-index: 1001;
}

.menu-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.menu-icon span:nth-child(1) {
  top: 0px;
}

.menu-icon span:nth-child(2) {
  top: 9px;
}

.menu-icon span:nth-child(3) {
  top: 18px;
}

/* Navigation links */
.main-nav ul {
  display: flex;
  list-style: none;
}

.main-nav li {
  margin-left: 30px;
}

.main-nav a {
  color: #ffffff;
  font-weight: 500;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #e94560;
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}

.nav-cta {
  background-color: #e94560;
  color: #ffffff !important;
  padding: 8px 20px;
  border-radius: 30px;
  text-align: center;
}

.nav-cta:hover,
.nav-cta:focus {
  background-color: #0f3460;
}

.nav-cta::after {
  display: none !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
  height: 100vh;
  min-height: 600px;
  background-image: linear-gradient(
      to bottom,
      rgba(26, 26, 46, 0.8),
      rgba(15, 52, 96, 0.8)
    ),
    url("./img/FcpXF.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero-content {
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #a0a0a0;
}

/* ===== ABOUT SECTION ===== */
.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.service-card {
  background-color: #1a1a2e;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  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;
}

.service-content {
  padding: 1.5rem;
  text-align: center;
}

.service-content h3 {
  margin-bottom: 1rem;
  color: #e94560;
}

.service-content p {
  margin-bottom: 1.5rem;
  color: #a0a0a0;
}

/* ===== BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.benefit-item {
  text-align: center;
  padding: 2rem 1rem;
  background-color: rgba(15, 52, 96, 0.3);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-item h3 {
  margin-bottom: 1rem;
  color: #e94560;
}

.benefit-item p {
  color: #a0a0a0;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  margin-bottom: 2rem;
  position: relative;
}

.step:last-child {
  margin-bottom: 0;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 25px;
  width: 2px;
  height: calc(100% + 20px);
  background: linear-gradient(to bottom, #e94560, #0f3460);
  z-index: 0;
}

.step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(to right, #e94560, #0f3460);
  color: #ffffff;
  font-weight: 700;
  margin-right: 20px;
  position: relative;
  z-index: 1;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  color: #e94560;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #a0a0a0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: rgba(15, 52, 96, 0.3);
  padding: 2rem;
  border-radius: 10px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: rgba(233, 69, 96, 0.2);
  font-family: serif;
  line-height: 1;
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-author {
  color: #a0a0a0;
  font-style: italic;
}

.testimonial-author strong {
  color: #e94560;
  font-style: normal;
}

/* ===== FAQ ===== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background-color: rgba(15, 52, 96, 0.5);
  color: #ffffff;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 8px;
}

.faq-arrow {
  position: relative;
  width: 15px;
  height: 15px;
}

.faq-arrow::before,
.faq-arrow::after {
  content: "";
  position: absolute;
  background-color: #e94560;
  transition: transform 0.3s ease;
}

.faq-arrow::before {
  width: 2px;
  height: 15px;
  top: 0;
  left: 6px;
}

.faq-arrow::after {
  width: 15px;
  height: 2px;
  top: 6px;
  left: 0;
}

.faq-item input[type="checkbox"]:checked ~ .faq-question {
  background-color: #0f3460;
  border-radius: 8px 8px 0 0;
}

.faq-item input[type="checkbox"]:checked ~ .faq-question .faq-arrow::before {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: rgba(15, 52, 96, 0.3);
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item input[type="checkbox"]:checked ~ .faq-answer {
  max-height: 500px;
  padding: 1rem 1.5rem;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background-color: rgba(15, 52, 96, 0.3);
  border-radius: 10px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #e94560;
}

.checkbox-group {
  margin-top: 0.5rem;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.checkbox-item:last-child {
  margin-bottom: 0;
}

.checkbox-item input[type="checkbox"] {
  margin-top: 5px;
  margin-right: 10px;
  cursor: pointer;
}

.checkbox-item label {
  flex: 1;
  margin-bottom: 0;
  cursor: pointer;
}

.policy-checkbox {
  font-size: 0.9rem;
}

.policy-checkbox a {
  text-decoration: underline;
}

.form-submit {
  margin-top: 2rem;
  text-align: center;
}

/* Style for select option background */
option {
  background-color: #1a1a2e;
  color: #ffffff;
}

/* ===== CONTACT SECTION ===== */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.contact-item h3 {
  color: #e94560;
  margin-bottom: 0.5rem;
}

.contact-map {
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: #0f3460;
  padding: 4rem 0 2rem;
  color: #ffffff;
  margin-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #e94560;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}

.footer-section p {
  color: #a0a0a0;
}

.footer-links,
.contact-info,
.legal-links {
  list-style: none;
}

.footer-links li,
.contact-info li,
.legal-links li {
  margin-bottom: 0.8rem;
}

.footer-links a,
.contact-info a,
.legal-links a {
  color: #a0a0a0;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.contact-info a:hover,
.legal-links a:hover,
.footer-links a:focus,
.contact-info a:focus,
.legal-links a:focus {
  color: #e94560;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #a0a0a0;
  font-size: 0.9rem;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: rgba(15, 52, 96, 0.95);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  z-index: 9999;
  transition: bottom 0.5s ease;
}

.cookie-consent.active {
  bottom: 0;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  flex: 1;
  margin-bottom: 0;
}

.cookie-content a {
  text-decoration: underline;
}

/* ===== POLICY PAGES ===== */
.policy-container {
  max-width: 800px;
  margin: 120px auto 50px;
  background-color: rgba(15, 52, 96, 0.3);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid rgba(233, 69, 96, 0.2);
}

.policy-content h1 {
  color: #e94560;
  margin-bottom: 1.5rem;
  text-align: center;
}

.policy-content h2 {
  color: #e94560;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.policy-content p {
  margin-bottom: 1rem;
  color: #a0a0a0;
}

.policy-content ul,
.policy-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: #a0a0a0;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-container {
  max-width: 600px;
  margin: 120px auto 50px;
  text-align: center;
  background-color: rgba(15, 52, 96, 0.3);
  padding: 3rem 2rem;
  border-radius: 10px;
  border: 1px solid rgba(233, 69, 96, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.thank-you-container h1 {
  color: #e94560;
  margin-bottom: 1rem;
}

.thank-you-container p {
  color: #a0a0a0;
  margin-bottom: 2rem;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.3rem;
  }

  .about-content {
    flex-direction: column;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .menu-icon {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #1a1a2e;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  }

  .main-nav ul {
    flex-direction: column;
  }

  .main-nav li {
    margin: 0 0 15px;
  }

  .main-nav a {
    display: block;
    padding: 10px 0;
    font-size: 1.1rem;
  }

  .menu-toggle:checked ~ .main-nav {
    right: 0;
  }

  .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
  }

  .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
    opacity: 0;
    right: -60px;
  }

  .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .service-image {
    height: 180px;
  }

  .policy-container,
  .thank-you-container {
    padding: 1.5rem;
    margin-top: 100px;
  }
}
