/* Base Styles */
:root {
  --midnight-teal: #014D4E;
  --warm-coral: #FF6F61;
  --soft-sand: #F4E1D2;
  --misty-sage: #A8CABA;
  --pearl-white: #FDFCFB;
  
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Open Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  color: #333;
  line-height: 1.6;
  background-color: var(--pearl-white);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--warm-coral);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #e86558;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

/* Header */
header {
  background-color: var(--pearl-white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--midnight-teal);
  text-decoration: none;
  background: linear-gradient(to right, var(--midnight-teal), var(--warm-coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

header nav ul {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

header nav ul li {
  margin-left: 30px;
}

header nav ul li a {
  color: var(--midnight-teal);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

header nav ul li a:hover {
  color: var(--warm-coral);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.menu-toggle a {
  color: var(--midnight-teal);
  text-decoration: none;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background: linear-gradient(to right bottom, var(--pearl-white), var(--misty-sage) 120%);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-content {
  flex: 1;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hero h1 {
  color: var(--midnight-teal);
}

/* About Section */
.about {
  padding: 100px 0;
  position: relative;
}

.section-title {
  margin-bottom: 50px;
  text-align: center;
}

.text-center {
  text-align: center;
}

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 60%;
  height: 3px;
  background: var(--warm-coral);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.about-wrapper {
  background-color: rgba(255,255,255,0.6);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.about-text-wrapper {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

.about-content-left,
.about-content-right {
  grid-column: span 6;
}

.about-content-left h3,
.about-content-right h3 {
  color: var(--midnight-teal);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.about-content-left h3:after,
.about-content-right h3:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: var(--warm-coral);
  bottom: -5px;
  left: 0;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.credential-item {
  background-color: rgba(255,255,255,0.9);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.credential-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Services Section */
.services {
  padding: 80px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.service-item {
  grid-column: span 4;
  background-color: white;
  padding: 0 0 30px 0;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-icon {
  margin-bottom: 20px;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-item:hover .service-icon img {
  transform: scale(1.05);
}

.service-item h3 {
  padding: 0 30px;
  margin-top: 10px;
}

.service-item p {
  padding: 0 30px;
}

.service-item .btn {
  margin-top: 10px;
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
}

.benefit-item {
  grid-column: span 6;
  position: relative;
  padding-left: 80px;
  margin-bottom: 40px;
}

.benefit-number {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--warm-coral);
  opacity: 0.7;
}

/* Statistics Section */
.statistics {
  padding: 80px 0;
  color: white;
}

.counter-wrapper {
  grid-column: span 3;
  text-align: center;
  margin-bottom: 30px;
}

.counter {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--soft-sand);
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--pearl-white);
}

.testimonial-slider {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-slide {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  width: calc(33.333% - 20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  position: relative;
}

.testimonial-slide:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.testimonial-slide::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: var(--misty-sage);
  opacity: 0.3;
  font-family: serif;
  line-height: 1;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author h4 {
  margin-bottom: 5px;
  color: var(--midnight-teal);
}

.testimonial-nav {
  text-align: center;
  margin-top: 20px;
}

.testimonial-nav a {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: var(--misty-sage);
  border-radius: 50%;
  margin: 0 5px;
  transition: background-color 0.3s ease;
}

.testimonial-nav a:hover,
.testimonial-nav a:target {
  background-color: var(--warm-coral);
}

/* CTA Section */
.cta {
  padding: 80px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta::before,
.cta::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.cta::before {
  top: -100px;
  left: -100px;
}

.cta::after {
  bottom: -100px;
  right: -100px;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta h2 {
  margin-bottom: 20px;
  font-size: 2.8rem;
}

.cta p {
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2rem;
}

.btn-light {
  background-color: white;
  color: var(--warm-coral);
}

.btn-light:hover {
  background-color: #f5f5f5;
  color: #e86558;
}

.btn-special {
  background: linear-gradient(45deg, var(--midnight-teal), var(--midnight-teal));
  color: white;
  border: 2px solid white;
  padding: 15px 35px;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.btn-special:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: white;
  transition: all 0.5s ease;
  z-index: -1;
}

.btn-special:hover {
  color: var(--midnight-teal);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.btn-special:hover:before {
  width: 100%;
}

.btn-special .arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-special:hover .arrow {
  transform: translateX(5px);
}

/* Order Form Section */
.order-form {
  padding: 80px 0;
  background-color: var(--pearl-white);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--midnight-teal);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e5e5e5;
  border-radius: 50px;
  font-size: 1rem;
  font-family: var(--body-font);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--warm-coral);
}

.form-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.form-checkbox input {
  margin-right: 10px;
  width: auto;
}

.form-checkbox label {
  font-size: 0.9rem;
}

/* Form Styling Alternating Backgrounds */
.form-group:nth-child(odd) input,
.form-group:nth-child(odd) select {
  background-color: var(--pearl-white);
}

.form-group:nth-child(even) input,
.form-group:nth-child(even) select {
  background-color: white;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: var(--body-font);
  font-size: 1rem;
  background-color: var(--warm-coral);
  color: white;
}

.btn:hover {
  background-color: #e86558;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 111, 97, 0.3);
}

/* Footer */
footer {
  background-color: var(--midnight-teal);
  color: white;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--warm-coral);
}

.footer-col ul {
  list-style-type: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--warm-coral);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: #e0e0e0;
}

/* Policy Pages */
.policy {
  padding: 60px 0;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.policy-content h2 {
  color: var(--midnight-teal);
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
}

.policy-content ul {
  margin-bottom: 20px;
}

.last-update {
  margin-top: 40px;
  font-style: italic;
  color: #888;
  text-align: right;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.cookie-table th,
.cookie-table td {
  border: 1px solid #e0e0e0;
  padding: 10px 15px;
  text-align: left;
}

.cookie-table th {
  background-color: var(--midnight-teal);
  color: white;
}

.cookie-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Cookie Banner */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--midnight-teal);
  color: white;
  padding: 15px 20px;
  z-index: 1000;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
  align-items: center;
  justify-content: space-between;
}

.cookie-banner p {
  margin-bottom: 0;
  margin-right: 20px;
}

.cookie-banner button {
  background-color: var(--warm-coral);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-banner button:hover {
  background-color: #e86558;
}

/* Thank You Page */
.thank-you {
  padding: 100px 0;
  text-align: center;
}

.thank-you-content {
  background-color: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  position: relative;
  border: 2px solid var(--misty-sage);
  max-width: 800px;
  margin: 0 auto;
}

.thank-you-content::before {
  content: '✓';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--warm-coral);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(255, 111, 97, 0.3);
}

.thank-you h1 {
  color: var(--midnight-teal);
  margin-bottom: 30px;
  margin-top: 20px;
}

.thank-you p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

/* Angled Dividers */
.angle-top {
  position: relative;
  margin-top: 100px;
}

.angle-top:before {
  content: '';
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 80px;
  background: inherit;
  clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
}

.angle-bottom {
  position: relative;
  margin-bottom: 100px;
}

.angle-bottom:after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
  height: 80px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}

/* Background Variations */
.bg-teal {
  background-color: var(--midnight-teal);
  color: white;
}

.bg-coral {
  background-color: var(--warm-coral);
  color: white;
}

.bg-sand {
  background-color: var(--soft-sand);
  color: var(--midnight-teal);
}

.bg-sage {
  background-color: var(--misty-sage);
  color: var(--midnight-teal);
}