/* Base Styles & Variables */
:root {
  --velvet-plum: #4B2840;
  --neon-amber: #FFB703;
  --frosted-mint: #B7E4C7;
  --arctic-white: #FDFCFD;
  --shadow-graphite: #2D2D2D;
  --electric-cyan: #00C2D1;
  scroll-behavior: smooth; /* CSS smooth scrolling */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--shadow-graphite);
  background-color: var(--arctic-white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Hide scrollbars but keep functionality */
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

* {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

*::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--velvet-plum);
  margin-bottom: 1rem;
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  position: relative;
  margin-bottom: 2rem;
  text-align: center;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--neon-amber);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--electric-cyan);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--neon-amber);
}

section {
  padding: 4rem 0;
  position: relative;
}

/* Header & Navigation */
header {
  background-color: var(--velvet-plum);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--neon-amber);
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-amber), transparent);
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: var(--arctic-white);
  font-weight: 500;
}

nav a:hover, nav a.active {
  color: var(--neon-amber);
}

.menu-toggle {
  display: none;
  color: var(--arctic-white);
  font-size: 1.5rem;
}

/* Sections Styling */
.section-divider {
  display: none; /* Hide the divider */
  height: 0;
  overflow: hidden;
  position: relative;
  margin: 0;
  z-index: 1;
}

.section-divider::before {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--arctic-white);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(43, 25, 37, 0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: var(--arctic-white);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: var(--neon-amber);
  color: var(--shadow-graphite);
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--electric-cyan);
  color: var(--arctic-white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
  background-color: var(--frosted-mint);
  padding: 5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--arctic-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card h3 {
  color: var(--velvet-plum);
  margin-bottom: 1rem;
}

.service-image {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 3px solid var(--frosted-mint);
}

/* About Section */
.about {
  padding: 5rem 0;
}

/* Why Choose Us Section */
.why-us {
  background-color: var(--velvet-plum);
  color: var(--arctic-white);
  padding: 5rem 0;
}

.why-us h2 {
  color: var(--arctic-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neon-amber);
  margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--arctic-white);
  padding: 5rem 0;
}

.testimonial-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 0;
  display: flex;
  gap: 2rem;
  flex-wrap: nowrap;
  justify-content: space-between;
  overflow-x: auto;
}

.testimonial-item {
  text-align: center;
  background-color: var(--arctic-white);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  min-width: 280px;
  flex: 1;
  border-top: 4px solid var(--neon-amber);
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  color: var(--velvet-plum);
  font-weight: 600;
}

/* Process Section */
.process {
  background-color: var(--frosted-mint);
  padding: 5rem 0;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--velvet-plum);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  width: 22%;
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--neon-amber);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem;
  color: var(--shadow-graphite);
  font-weight: 700;
}

/* CTA Banner */
.cta-banner {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 5rem 0;
  color: var(--arctic-white);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(43, 25, 37, 0.8);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--arctic-white);
  margin-bottom: 1.5rem;
}

/* Contact Form */
.contact {
  padding: 5rem 0;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--frosted-mint), var(--arctic-white));
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--velvet-plum);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--frosted-mint);
  border-radius: 25px;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--electric-cyan);
  box-shadow: 0 0 0 3px rgba(0, 194, 209, 0.2);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 5px;
}

.form-submit {
  background-color: var(--neon-amber);
  color: var(--shadow-graphite);
  border: none;
  border-radius: 25px;
  padding: 1rem 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background-color: var(--electric-cyan);
  color: var(--arctic-white);
  transform: translateY(-3px);
}

.form-notification {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.form-notification.error {
  background-color: rgba(255, 99, 71, 0.1);
  border: 1px solid rgba(255, 99, 71, 0.5);
  color: #d32f2f;
}

.form-notification.success {
  background-color: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.5);
  color: #388e3c;
}

/* Main Form Page */
.main-form-section {
  padding: 5rem 0;
  background-color: var(--arctic-white);
}

.main-form-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--arctic-white);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--frosted-mint);
}

.main-form-container h2 {
  color: var(--velvet-plum);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.form-intro {
  margin-bottom: 2rem;
  color: var(--shadow-graphite);
}

.main-form .form-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.main-form .form-row .form-group {
  flex: 1;
}

.main-form .form-submit-container {
  text-align: center;
  margin-top: 2rem;
}

.main-form .form-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--shadow-graphite);
  font-style: italic;
}

/* Thank You Page Form */
.contact-form-thankyou {
  padding: 2rem 0 5rem;
  background-color: var(--arctic-white);
}

.thank-you-section + .contact-form-thankyou .main-form-container {
  border-top: 3px solid var(--frosted-mint);
  padding-top: 2.5rem;
}

/* Thank You Page Frame */
.thank-you-frame {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background-color: var(--arctic-white);
  border: 4px double var(--velvet-plum);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.thank-you-frame::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid var(--neon-amber);
  border-radius: 8px;
  pointer-events: none;
}

.button-container {
  margin-top: 2.5rem;
}

.return-home-btn {
  display: inline-block;
  min-width: 200px;
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.return-home-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Main Page Form Section */
.main-contact-form-section {
  padding: 5rem 0;
  background-color: var(--frosted-mint);
  position: relative;
}

.main-contact-form-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: var(--arctic-white);
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.main-contact-form-section .main-form-container {
  background-color: var(--arctic-white);
}

.form-contact-info {
  padding: 5rem 0;
  background-color: var(--frosted-mint);
}

.contact-info-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.contact-info-item {
  background-color: var(--arctic-white);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 280px;
  transition: transform 0.3s ease;
}

.contact-info-item:hover {
  transform: translateY(-5px);
}

.contact-icon {
  margin-bottom: 1rem;
}

.contact-info-item h3 {
  color: var(--velvet-plum);
  margin-bottom: 0.5rem;
}

.contact-info-item a {
  color: var(--electric-cyan);
}

.contact-info-item a:hover {
  color: var(--neon-amber);
}

@media (max-width: 768px) {
  .main-form .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .contact-info-grid {
    gap: 2rem;
  }
  
  .contact-info-item {
    width: 100%;
    max-width: 320px;
  }
}

/* Footer */
footer {
  background-color: var(--shadow-graphite);
  color: var(--arctic-white);
  padding: 4rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

footer h3 {
  color: var(--neon-amber);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

footer a {
  color: var(--frosted-mint);
  display: block;
  margin-bottom: 0.5rem;
}

footer a:hover {
  color: var(--neon-amber);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Legal Pages */
.legal-page {
  padding: 3rem 0;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background-color: var(--arctic-white);
  border: 1px solid var(--frosted-mint);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.legal-content h1,
.legal-content h2,
.legal-content h3 {
  text-align: center;
}

.legal-content h2 {
  margin-top: 2rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--neon-amber);
  color: var(--shadow-graphite);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  display: none;
}

.cookie-popup.show {
  display: flex;
}

.cookie-popup button {
  background-color: var(--shadow-graphite);
  color: var(--arctic-white);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}

/* FAQ Styles */
.faq {
  padding: 5rem 0;
  background-color: var(--arctic-white);
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  background-color: var(--frosted-mint);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.faq-toggle {
  color: var(--velvet-plum);
  font-size: 1.5rem;
  font-weight: bold;
}

.faq-answer {
  padding: 1.5rem;
  background-color: var(--arctic-white);
}
