*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --primary: #2d5a7b;
  --secondary: #e8a849;
  --dark: #1a2f3d;
  --light: #f8fafc;
  --gray: #6b7280;
  --white: #ffffff;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --radius: 6px;
  --transition: 0.3s ease;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--light);
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--secondary);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}
h1 {
  font-size: 1.8rem;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.2rem;
}
h4 {
  font-size: 1rem;
}
p {
  margin-bottom: 0.8rem;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}
.btn {
  display: inline-block;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--secondary);
  color: var(--dark);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--dark);
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transform: translateY(0);
  transition: transform 0.4s ease;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}
.header.visible {
  transform: translateY(0);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}
.logo span {
  color: var(--secondary);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}
.nav-menu a {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  position: relative;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("../campaign_visuals/bg.webp") center/cover no-repeat;
  opacity: 0.15;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--white);
}
.hero p {
  font-size: 15px;
  margin-bottom: 20px;
  opacity: 0.9;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
.section {
  padding: 50px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 35px;
}
.section-header h2 {
  margin-bottom: 8px;
}
.section-header p {
  color: var(--gray);
  font-size: 13px;
}
.section-alt {
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  padding: 25px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.feature-card i {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 12px;
}
.feature-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}
.feature-card p {
  font-size: 12px;
  color: var(--gray);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-content h2 {
  margin-bottom: 12px;
}
.about-content p {
  color: var(--gray);
  font-size: 13px;
}
.stats-row {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: 700;
}
.stat-label {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-image {
  height: 160px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image i {
  font-size: 3rem;
  color: var(--white);
  opacity: 0.8;
}
.product-info {
  padding: 18px;
}
.product-info h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.product-info p {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 10px;
}
.product-price {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 700;
}
.testimonials {
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}
.testimonials .section-header h2 {
  color: var(--white);
}
.testimonials .section-header p {
  color: rgba(255, 255, 255, 0.7);
}
.testimonial-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 15px;
}
.testimonial-slider::-webkit-scrollbar {
  height: 4px;
}
.testimonial-slider::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}
.testimonial-slider::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 2px;
}
.testimonial-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: var(--radius);
  backdrop-filter: blur(5px);
}
.testimonial-card p {
  font-size: 13px;
  font-style: italic;
  margin-bottom: 12px;
  opacity: 0.9;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-avatar i {
  color: var(--dark);
}
.testimonial-name {
  font-weight: 600;
  font-size: 13px;
}
.testimonial-role {
  font-size: 11px;
  opacity: 0.7;
}
.cta-section {
  background: linear-gradient(135deg, var(--secondary) 0%, #d4932e 100%);
  text-align: center;
  padding: 45px 0;
}
.cta-section h2 {
  color: var(--dark);
  margin-bottom: 10px;
}
.cta-section p {
  color: var(--dark);
  opacity: 0.8;
  margin-bottom: 20px;
  font-size: 13px;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}
.contact-form-section {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-form-section h3 {
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  font-size: 13px;
  font-family: inherit;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45, 90, 123, 0.1);
}
.form-group textarea {
  height: 100px;
  resize: vertical;
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
}
.checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  cursor: pointer;
}
.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-card {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-info-card h4 {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-info-card h4 i {
  color: var(--secondary);
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
}
.contact-info-item i {
  color: var(--primary);
  width: 18px;
}
.contact-map {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 200px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.contact-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 15px;
}
.contact-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-header {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: var(--white);
  padding: 100px 0 50px;
  text-align: center;
}
.page-header h1 {
  color: var(--white);
  margin-bottom: 8px;
}
.page-header p {
  opacity: 0.8;
  font-size: 13px;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 12px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb a:hover {
  color: var(--white);
}
.breadcrumb span {
  opacity: 0.5;
}
.content-section {
  padding: 45px 0;
}
.content-section h2 {
  margin-bottom: 12px;
  margin-top: 25px;
}
.content-section h2:first-child {
  margin-top: 0;
}
.content-section p,
.content-section ul,
.content-section ol {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 12px;
}
.content-section ul,
.content-section ol {
  padding-left: 20px;
}
.content-section li {
  margin-bottom: 6px;
  position: relative;
}
.content-section ul li::before {
  content: "•";
  color: var(--secondary);
  position: absolute;
  left: -15px;
}
.about-team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.team-member {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.team-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-avatar i {
  font-size: 1.8rem;
  color: var(--white);
}
.team-member h4 {
  font-size: 14px;
  margin-bottom: 3px;
}
.team-member p {
  font-size: 11px;
  color: var(--gray);
}
.workshops-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}
.workshop-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  align-items: center;
}
.workshop-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.workshop-icon i {
  font-size: 1.8rem;
  color: var(--white);
}
.workshop-info h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.workshop-info p {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 0;
}
.workshop-meta {
  text-align: right;
}
.workshop-duration {
  font-size: 11px;
  color: var(--gray);
  margin-bottom: 4px;
}
.workshop-price {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 700;
}
.error-page,
.thankyou-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.error-content,
.thankyou-content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  height: 100vh;
}
.error-box,
.thankyou-box {
  max-width: 450px;
  margin: 0 auto;
}
.error-box h1,
.thankyou-box h1 {
  font-size: 4rem;
  color: var(--secondary);
  margin-bottom: 10px;
}
.error-box h2,
.thankyou-box h2 {
  margin-bottom: 12px;
}
.error-box p,
.thankyou-box p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 14px;
}
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 30px 0 20px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand {
  max-width: 280px;
}
.footer-brand .logo {
  color: var(--white);
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 11px;
  opacity: 0.7;
}
.footer-links {
  display: flex;
  gap: 40px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  margin-bottom: 12px;
}
.footer-col ul li {
  margin-bottom: 6px;
}
.footer-col ul a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}
.footer-col ul a:hover {
  color: var(--secondary);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  font-size: 11px;
}
.footer-bottom p {
  opacity: 0.6;
}
.privacy-links {
  display: flex;
  gap: 15px;
}
.privacy-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}
.privacy-links a:hover {
  color: var(--secondary);
}
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 15px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}
.cookie-popup.show {
  transform: translateY(0);
}
.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cookie-inner p {
  font-size: 12px;
  margin: 0;
  opacity: 0.9;
}
.cookie-inner a {
  color: var(--secondary);
}
.cookie-buttons {
  display: flex;
  gap: 10px;
}
.cookie-btn {
  padding: 8px 18px;
  font-size: 12px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.cookie-accept {
  background: var(--secondary);
  color: var(--dark);
}
.cookie-decline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.value-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.value-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 3px solid var(--secondary);
}
.value-card i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.value-card h4 {
  font-size: 13px;
  margin-bottom: 5px;
}
.value-card p {
  font-size: 11px;
  color: var(--gray);
  margin: 0;
}
.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 30px 0;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.process-step {
  text-align: center;
  position: relative;
  flex: 1;
}
.step-number {
  width: 60px;
  height: 60px;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 auto 12px;
  position: relative;
  z-index: 2;
}
.process-step h4 {
  font-size: 13px;
  margin-bottom: 4px;
}
.process-step p {
  font-size: 11px;
  color: var(--gray);
}
.faq-list {
  margin-top: 25px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-question {
  padding: 15px 20px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.faq-question:hover {
  background: rgba(45, 90, 123, 0.05);
}
.faq-question i {
  transition: var(--transition);
  color: var(--secondary);
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 200px;
}
.faq-answer p {
  padding: 0 20px 15px;
  font-size: 12px;
  color: var(--gray);
  margin: 0;
}
@media (max-width: 992px) {
  .features-grid,
  .products-grid,
  .about-team {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-image {
    order: -1;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .value-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    flex-direction: column;
    gap: 20px;
  }
  .process-steps::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: var(--shadow);
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    transition: var(--transition);
  }
  .nav-menu.active {
    transform: scaleY(1);
    opacity: 1;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    flex-direction: column;
    gap: 25px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .workshop-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .workshop-icon {
    margin: 0 auto;
  }
  .workshop-meta {
    text-align: center;
  }
  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .features-grid,
  .products-grid,
  .about-team,
  .value-cards {
    grid-template-columns: 1fr;
  }
  .stats-row {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .section {
    padding: 35px 0;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .testimonial-card {
    flex: 0 0 280px;
  }
}
@media (max-width: 320px) {
  .container {
    padding: 0 10px;
  }
  .btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  h1 {
    font-size: 1.3rem;
  }
  h2 {
    font-size: 1.1rem;
  }
}
