/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Variables */
:root {
  --primary: #22b3a2; /* Teal */
  --secondary: #f083c3; /* Pink */
  --accent: #f7b955; /* Yellow/Gold */
  --black: #000000;
  --white: #ffffff;
  --gray: #f5f5f5;
  --text: #333333;
}

/* Typography */
body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Fugaz One", cursive;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 4.5rem;
  background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 3px 3px 0 var(--black), 4px 4px 0 rgba(0, 0, 0, 0.2);
  transform: skew(-5deg, 0);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 3rem;
  background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 3px 3px 0 var(--black), 4px 4px 0 rgba(0, 0, 0, 0.2);
  transform: skew(-5deg, 0);
  text-align: center;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 2rem;
}

p {
  margin-bottom: 1rem;
}

strong {
  font-weight: 700;
}

/* Layout */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--black);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.logo img {
  height: auto;
  max-height: 40px;
  width: auto;
}

.desktop-nav {
  display: none;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    gap: 1.5rem;
  }
}

.desktop-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--white);
  border: 2px solid var(--black);
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-button {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--white);
  z-index: 200;
  transition: right 0.3s;
  border-left: 2px solid var(--black);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-logo {
  display: flex;
  justify-content: center;
}

.mobile-logo img {
  height: auto;
  max-height: 60px;
  width: auto;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
}

.mobile-nav a:hover {
  color: var(--primary);
}

.mobile-nav .button {
  margin-top: 1rem;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background-color: var(--secondary);
  color: var(--white);
  border: 2px solid var(--black);
  box-shadow: 0.25rem 0.25rem 0 var(--black), inset 0.25rem 0.25rem 0 rgba(255, 255, 255, 0.4);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  transform: translateY(0);
  text-align: center;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0.35rem 0.35rem 0 var(--black), inset 0.25rem 0.25rem 0 rgba(255, 255, 255, 0.4);
}

.button:active {
  transform: translateY(2px);
  box-shadow: 0.15rem 0.15rem 0 var(--black), inset 0.25rem 0.25rem 0 rgba(255, 255, 255, 0.4);
}

.button-outline {
  background-color: var(--white);
  color: var(--black);
}

.mail-button-icon {
  margin-right: 0.5rem;
}

/* Hero Section */
.hero {
  padding: 3rem 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 5rem;
  left: 10%;
  width: 4rem;
  height: 4rem;
  background-color: var(--primary);
  transform: rotate(45deg);
  border: 2px solid var(--black);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 5rem;
  right: 10%;
  width: 5rem;
  height: 5rem;
  background-color: var(--secondary);
  border-radius: 50%;
  border: 2px solid var(--black);
  z-index: 1;
}

.hero .container {
  display: grid;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1100px;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 480px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-image {
  position: relative;
  transform: rotate(3deg);
  transition: transform 0.3s;
}

.hero-image:hover {
  transform: rotate(0);
}

.hero-image img {
  width: 100%;
  height: auto;
  border: 4px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  border-radius: 0.5rem;
  object-fit: contain;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 4rem;
  height: 4rem;
  background-color: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--black);
  z-index: -1;
}

.hero-image::after {
  content: "";
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 4rem;
  height: 4rem;
  background-color: var(--primary);
  transform: rotate(45deg);
  border: 2px solid var(--black);
  z-index: -1;
}

/* About Section */
.about {
  background-color: var(--white);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
}

.about-content {
  background-color: var(--white);
  border: 4px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  padding: 1.5rem;
  /* border-radius: 0.75rem; */
  position: relative;
  z-index: 2;
}

.disc-icon {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
  color: var(--accent);
}

.spin {
  animation: spin 8s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Video Section */
.video {
  background-color: var(--white);
  position: relative;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

.video-container {
  position: relative;
  overflow: hidden;
  border: 4px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  border-radius: 0.5rem;
  margin-top: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.video-container::before {
  content: "";
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 3rem;
  height: 3rem;
  background-color: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--black);
  z-index: 1;
}

.video-container::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  transform: rotate(45deg);
  border: 2px solid var(--black);
  z-index: 1;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--white);
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background: linear-gradient(to right, var(--accent), var(--secondary), var(--primary));
}

.testimonials::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
}

.testimonial-carousel {
  margin-top: 2rem;
}

.testimonial-card {
  background-color: var(--white);
  border: 4px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.testimonial-card.shake {
  animation: shake 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.testimonial-card:hover {
  animation: shake 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }
  30%,
  50%,
  70% {
    transform: translate3d(-3px, 0, 0);
  }
  40%,
  60% {
    transform: translate3d(3px, 0, 0);
  }
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background-color: var(--accent);
  border-radius: 50%;
  opacity: 0.2;
  transform: translate(4rem, -4rem);
}

.testimonial-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 8rem;
  height: 8rem;
  background-color: var(--primary);
  border-radius: 50%;
  opacity: 0.2;
  transform: translate(-4rem, 4rem);
}

.quote-icon {
  color: var(--secondary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.testimonial-text {
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  min-height: 8rem;
}

@media (min-width: 768px) {
  .testimonial-text {
    font-size: 1.5rem;
  }
}

.testimonial-author {
  text-align: center;
}

.author-name {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.author-role {
  color: #666;
  margin-bottom: 0.5rem;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  color: var(--accent);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.carousel-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--white);
  border: 2px solid var(--black);
  box-shadow: 0.25rem 0.25rem 0 var(--black);
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-button:hover {
  background-color: rgba(247, 185, 85, 0.1);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--white);
  border: 2px solid var(--black);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background-color: var(--secondary);
  transform: scale(1.25);
}

/* Contact Section */
.contact {
  background-color: var(--white);
  position: relative;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

.contact-card {
  background-color: var(--white);
  border: 4px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  padding: 2rem;
  text-align: center;
  max-width: 36rem;
  margin: 3rem auto 0;
  position: relative;
}

.mail-icon {
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

/* Contact Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.required {
  color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 3px solid var(--black);
  background-color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: all 0.3s;
  box-shadow: 4px 4px 0 var(--black);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 4px 4px 0 var(--primary);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' 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 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}

.error-text {
  color: var(--secondary);
  font-size: 0.875rem;
  font-weight: 700;
  height: 0;
  overflow: hidden;
  transition: height 0.2s ease;
}

.form-group.has-error .error-text {
  height: auto;
  margin-top: 0.25rem;
} 

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--secondary);
  box-shadow: 4px 4px 0 var(--secondary);
}

.submit-button {
  margin-top: 1rem;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  position: relative;
  overflow: hidden;
}

.submit-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.button-loader {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  animation: spin-loader 1.5s linear infinite;
}

@keyframes spin-loader {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Success and Error Messages */
.form-message {
  text-align: center;
  padding: 2rem;
  border: 4px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  margin-bottom: 2rem;
}

.success-message {
  background-color: rgba(34, 179, 162, 0.1);
  border-color: var(--primary);
  box-shadow: 8px 8px 0 var(--primary);
}

.error-message {
  background-color: rgba(240, 131, 195, 0.1);
  border-color: var(--secondary);
  box-shadow: 8px 8px 0 var(--secondary);
}

.success-icon,
.error-icon {
  margin: 0 auto 1rem;
  display: flex;
  justify-content: center;
}

.success-icon {
  color: var(--primary);
}

.error-icon {
  color: var(--secondary);
}

.form-message h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-message p {
  margin-bottom: 0;
}

.form-message a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 700;
}

.form-message a:hover {
  color: var(--secondary);
}

/* Hidden class for honeypot */
.hidden {
  position: absolute;
  left: -9999px;
}

/* Footer */
footer {
  background-color: var(--white);
  border-top: 4px solid var(--black);
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.footer-top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
  }
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .footer-logo {
    align-items: flex-start;
  }
}

.footer-logo p {
  font-weight: 700;
  margin-bottom: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--secondary);
  color: var(--white);
  border: 2px solid var(--black);
  box-shadow: 0.25rem 0.25rem 0 var(--black);
  transition: all 0.3s;
}

.social-links a:nth-child(2) {
  background-color: var(--primary);
}

.social-links a:nth-child(3) {
  background-color: var(--accent);
}

.social-links a:hover {
  transform: scale(1.1);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 2px solid var(--black);
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0;
  font-weight: 700;
}

/* Decorative Elements */
.squiggle {
  position: absolute;
  bottom: 10rem;
  left: 10%;
  width: 10rem;
  height: 1.5rem;
}

.squiggle svg {
  width: 100%;
  height: 100%;
}
