/* Base Styles */
:root {
  --deep-blue: #0A1F44;
  --mint-green: #4ED1B3;
  --coral: #FF6B6B;
  --sand-beige: #F6E6CB;
  --white: #FFFFFF;
  --dark-gray: #2E2E2E;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: var(--deep-blue);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--mint-green);
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1rem;
}

/* Button Styles */
.btn {
  display: inline-block;
  background-color: var(--mint-green);
  color: var(--deep-blue);
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--deep-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(10, 31, 68, 0.2);
}

.btn-cta {
  background-color: var(--coral);
  color: var(--white);
}

/* Section Styles */
section {
  padding: 5rem 0;
}

section:nth-child(odd) {
  background-color: var(--white);
}

section:nth-child(even) {
  background-color: var(--sand-beige);
}

/* Header & Navigation */
.site-header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--deep-blue);
  text-decoration: none;
}

.main-nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  height: 100%;
}

.main-nav li {
  margin-left: 2rem;
  display: flex;
  align-items: center;
}

.main-nav a {
  color: var(--deep-blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--mint-green);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  position: relative;
  width: 30px;
  height: 24px;
  cursor: pointer;
}

.menu-icon {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--deep-blue);
  transition: all 0.3s ease;
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--deep-blue);
  transition: all 0.3s ease;
}

.menu-icon::before {
  transform: translateY(-10px);
}

.menu-icon::after {
  transform: translateY(10px);
}

.menu-icon.open {
  background-color: transparent;
}

.menu-icon.open::before {
  transform: rotate(45deg);
}

.menu-icon.open::after {
  transform: rotate(-45deg);
}

/* Hero Section */
.hero {
  padding: 8rem 0 5rem;
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--deep-blue) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero .tagline {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.animated-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.1;
}

.animated-background::before,
.animated-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--mint-green) 2px, transparent 2px);
  background-size: 30px 30px;
  animation: moveBackground 60s linear infinite;
}

.animated-background::after {
  background-size: 50px 50px;
  animation-direction: reverse;
  animation-duration: 90s;
  opacity: 0.5;
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* About Section */
.about-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  text-align: right;
}

.about-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.service-icon {
  margin-bottom: 1.5rem;
}

.service-icon img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon img {
  transform: scale(1.03);
}

/* Why Choose Us Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature-icon img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
}

/* Pricing Section */
.pricing-tables {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.pricing-table {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.pricing-table:hover {
  transform: translateY(-5px);
}

.pricing-table.featured {
  border: 2px solid var(--coral);
  transform: scale(1.05);
}

.pricing-table.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-table h3 {
  margin-bottom: 1rem;
}

.price {
  margin-bottom: 2rem;
}

.amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--deep-blue);
}

.period {
  display: block;
  color: var(--dark-gray);
}

.features-list {
  list-style: none;
  margin-bottom: 2rem;
}

.features-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

/* Testimonials Section */
.testimonials {
  position: relative;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-item {
  text-align: center;
  padding: 2rem;
  display: none;
}

.testimonial-item.active {
  display: block;
  animation: fadeIn 1s forwards;
}

.testimonial-item blockquote {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-item blockquote::before,
.testimonial-item blockquote::after {
  content: '"';
  font-size: 3rem;
  color: var(--mint-green);
  opacity: 0.3;
  position: absolute;
}

.testimonial-item blockquote::before {
  top: -20px;
  left: -10px;
}

.testimonial-item blockquote::after {
  bottom: -40px;
  right: -10px;
}

.testimonial-item cite {
  display: block;
  font-style: normal;
}

.name {
  font-weight: 700;
  color: var(--deep-blue);
}

.position {
  color: var(--dark-gray);
  font-size: 0.9rem;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--sand-beige);
  border: 2px solid var(--mint-green);
  margin: 0 5px;
  cursor: pointer;
}

.indicator.active {
  background-color: var(--mint-green);
}

.testimonial-radio {
  display: none;
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-item {
  margin-bottom: 2rem;
}

.info-item h3 {
  margin-bottom: 0.5rem;
  color: var(--deep-blue);
}

.info-item p {
  color: var(--dark-gray);
}

.info-item a {
  color: var(--deep-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-item a:hover {
  color: var(--mint-green);
}

.location-map {
  border-radius: 8px;
  overflow: hidden;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Form Section */
.order-form {
  background-color: var(--white);
}

.custom-form {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--sand-beige);
  padding: 2rem;
  border-radius: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e2e2e2;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--mint-green);
}

.checkbox-group {
  margin-top: 2rem;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.checkbox-wrapper input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

.checkbox-wrapper label {
  margin-bottom: 0;
}

.checkbox-wrapper a {
  color: var(--deep-blue);
  text-decoration: none;
  border-bottom: 1px dotted;
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

/* Footer */
.site-footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 3rem;
}

.footer-content h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  position: relative;
}

.footer-content h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--mint-green);
}

.footer-about p {
  color: #b4b4b4;
}

.footer-links ul,
.footer-contact ul,
.footer-legal ul {
  list-style: none;
}

.footer-links ul li,
.footer-contact ul li,
.footer-legal ul li {
  margin-bottom: 0.8rem;
}

.footer-links a,
.footer-contact a,
.footer-legal a {
  color: #b4b4b4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-legal a:hover {
  color: var(--mint-green);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #3a3a3a;
}

.footer-bottom p {
  color: #888;
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.cookie-banner p {
  margin-bottom: 0;
  margin-right: 2rem;
}

/* Legal Pages */
.legal-page {
  padding-top: 120px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.legal-text h2 {
  text-align: left;
  margin-top: 2rem;
}

.legal-text h2::after {
  left: 0;
  transform: none;
}

/* Thank You Page */
.thanks-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 3rem;
  margin-top: 80px;
}

.thanks-message-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 2rem;
}

.thanks-message {
  max-width: 600px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  border: 2px solid var(--mint-green);
}

.thanks-icon {
  font-size: 5rem;
  color: var(--mint-green);
  margin-bottom: 2rem;
}

.thanks-message h1 {
  margin-bottom: 1.5rem;
}

.thanks-message p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
