:root {
  --bg: #faf9f6;
  --text-main: #2b2b2b;
  --accent1: #4bc1c6;
  --accent2: #ffc93c;
  --cta: #ff5c8d;
  --white: #fff;
  --shadow: 0 4px 24px 0 rgba(44, 44, 44, 0.06);
  --navbar-border: #e0e0e0;
}
/* --- Navbar Styles --- */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--bg);
  border-bottom: 1px solid var(--navbar-border);
  z-index: 100;
  box-sizing: border-box;
  box-shadow: none;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5em;
  text-decoration: none;
  user-select: none;
}
.navbar-logo-svg {
  height: 40px;
  width: 40px;
  transition: transform 0.5s cubic-bezier(0.4, 2, 0.6, 1), filter 0.4s;
  will-change: transform, filter;
  /* Prevent selection highlight */
  pointer-events: none;
  display: block;
}
.navbar-logo-text {
  font-family: "Segoe UI", "Inter", Arial, sans-serif;
  font-weight: 600;
  font-size: 1.15em;
  color: #2b2b2b;
  letter-spacing: 0.01em;
  line-height: 1;
}
.navbar-logo:hover .navbar-logo-svg,
.navbar-logo:focus .navbar-logo-svg {
  transform: rotate(-8deg) scale(1.04);
  filter: drop-shadow(0 0 6px #ff5c8d66);
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.navbar-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 2px 0;
  position: relative;
  transition: color 0.18s;
}
.navbar-link:hover,
.navbar-link:focus {
  color: var(--cta);
}
.navbar-link::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: var(--cta);
  transition: width 0.18s;
  position: absolute;
  left: 0;
  bottom: -2px;
  border-radius: 2px;
}
.navbar-link:hover::after,
.navbar-link:focus::after {
  width: 100%;
}
.navbar-cta {
  margin-left: 24px;
  background: var(--cta);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.7em 1.7em;
  border: none;
  border-radius: 2em;
  box-shadow: 0 2px 12px 0 rgba(255, 92, 141, 0.1);
  cursor: pointer;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  outline: none;
  display: inline-block;
}
.navbar-cta:hover,
.navbar-cta:focus {
  background: var(--accent2);
  color: var(--text-main);
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 4px 20px 0 rgba(255, 201, 60, 0.13);
}
/* Hamburger */
.navbar-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 12px;
  z-index: 120;
}
.navbar-hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  background: var(--cta);
  border-radius: 2px;
  transition: all 0.25s;
}
/* Overlay Menu */
#navbar-toggle {
  display: none;
}
.navbar-overlay {
  display: none;
}
#navbar-toggle:checked ~ .navbar-overlay {
  display: flex;
}
.navbar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 110;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.2s;
  opacity: 1;
}
.navbar-overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
  margin-bottom: 60px;
}
.navbar-overlay-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  position: relative;
  transition: color 0.18s;
}
.navbar-overlay-link:hover,
.navbar-overlay-link:focus {
  color: var(--cta);
}
.navbar-overlay-link::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: var(--cta);
  transition: width 0.18s;
  position: absolute;
  left: 0;
  bottom: -4px;
  border-radius: 2px;
}
.navbar-overlay-link:hover::after,
.navbar-overlay-link:focus::after {
  width: 100%;
}
.navbar-overlay-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 32px;
  display: flex;
  justify-content: center;
  pointer-events: auto;
}
.navbar-overlay-cta .navbar-cta {
  margin: 0;
  font-size: 1.15rem;
  padding: 1em 2.5em;
}
/* Responsive */
@media (max-width: 900px) {
  .navbar-container {
    max-width: 100vw;
  }
}
@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
  .navbar-hamburger {
    display: block;
  }
  /* Hamburger animation when open */
  #navbar-toggle:checked + .navbar .navbar-hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  #navbar-toggle:checked + .navbar .navbar-hamburger span:nth-child(2) {
    opacity: 0;
  }
  #navbar-toggle:checked + .navbar .navbar-hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
@media (max-width: 600px) {
  .navbar-container {
    height: 56px;
    padding: 0 2vw;
  }
  .navbar-logo {
    font-size: 1.1rem;
  }
}
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text-main);
  min-height: 100vh;
}
.hero {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 90vh;
  padding: 0 6vw;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero-content {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 7vw 0 4vw 0;
  z-index: 2;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.08;
  margin-bottom: 1.1rem;
  letter-spacing: -1.5px;
  text-shadow: 0 2px 8px rgba(44, 44, 44, 0.03);
  transition: color 0.2s;
}
.hero-title:hover {
  color: var(--cta);
  transition: color 0.2s;
}
.hero-support {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
  font-weight: 500;
  opacity: 0.88;
  transition: color 0.2s;
}
.hero-cta {
  display: inline-block;
  background: var(--cta);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 0.95em 2.2em;
  border: none;
  border-radius: 2em;
  box-shadow: var(--shadow);
  cursor: pointer;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  outline: none;
}
.hero-cta:hover,
.hero-cta:focus {
  background: #e94e7b;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px 0 rgba(255, 92, 141, 0.13);
}
.hero-art {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  min-width: 320px;
  z-index: 1;
}
.abstract-svg {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
  margin-right: -3vw;
  margin-top: 4vw;
  filter: drop-shadow(0 8px 32px rgba(75, 193, 198, 0.07));
  user-select: none;
  pointer-events: none;
}
/* Shape divider at bottom */
.shape-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 90px;
  z-index: 3;
  line-height: 0;
}
/* Responsive styles */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 0 4vw;
    min-height: 100vh;
  }
  .hero-content {
    padding: 8vw 0 2vw 0;
    align-items: flex-start;
  }
  .hero-art {
    justify-content: center;
    margin-top: 2vw;
    margin-bottom: 4vw;
  }
  .abstract-svg {
    margin: 0 auto;
    max-width: 340px;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 0 2vw;
  }
  .hero-content {
    padding: 12vw 0 2vw 0;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-support {
    font-size: 1.05rem;
  }
  .abstract-svg {
    max-width: 220px;
  }
  .shape-divider {
    height: 48px;
  }
}
/* === Our Services Section === */
.services-section {
  background: #fff;
  padding: 64px 0 64px 0;
}

.services-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.services-section-title {
  color: #2b2b2b;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.services-section-underline {
  width: 60px;
  height: 3px;
  background: #ff5c8d;
  margin: 0 auto 16px auto;
  border-radius: 2px;
}

.services-section-subtext {
  color: #777777;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.services-card {
  background: #fff;
  border: 2px solid #f2f2f2;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(44, 62, 80, 0.07);
  padding: 36px 28px 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-card:hover {
  box-shadow: 0 8px 32px 0 rgba(255, 92, 141, 0.13);
  border-color: #ff5c8d;
  transform: translateY(-5px);
}

.services-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px 0 rgba(44, 62, 80, 0.1);
}

.services-card:hover .services-card-icon {
  transform: scale(1.08);
}

.services-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 12px;
  text-align: center;
}

.services-card-desc {
  color: #555555;
  font-size: 1rem;
  text-align: center;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .services-cards-grid {
    gap: 20px;
    padding: 0 24px;
  }
  .services-section {
    padding: 48px 0 48px 0;
  }
}

@media (max-width: 768px) {
  .services-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 12px;
  }
  .services-card {
    padding: 28px 16px 24px 16px;
    align-items: flex-start;
    text-align: left;
  }
  .services-card-title,
  .services-card-desc {
    text-align: left;
  }
  .services-section-header {
    margin-bottom: 28px;
    padding: 0 8px;
  }
}

/* Our Process Section */
.process-section {
  background: #fff;
  padding: 64px 0 56px 0;
}

.process-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.process-section-title {
  color: #2b2b2b;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.process-section-underline {
  width: 56px;
  height: 3px;
  background: #ff5c8d;
  margin: 0 auto 16px auto;
  border-radius: 2px;
}

.process-section-subtext {
  color: #777;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.process-steps-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.process-connector-line {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  height: 2px;
  background: #e0e0e0;
  z-index: 0;
  margin: 0 48px;
  pointer-events: none;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  gap: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 0;
  min-width: 140px;
  max-width: 200px;
  background: transparent;
  margin: 0 8px;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid transparent;
  box-shadow: 0 2px 12px 0 rgba(75, 193, 198, 0.06);
  margin-bottom: 18px;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 2;
}

.process-step:hover .step-icon,
.process-step:focus-within .step-icon {
  transform: scale(1.05);
  border-color: #ff5c8d;
}

.step-number {
  font-size: 1.35rem;
  font-weight: 700;
  color: #2b2b2b;
  letter-spacing: 1px;
}

.step-title {
  margin-top: 2px;
  font-size: 1.08rem;
  font-weight: 700;
  color: #2b2b2b;
  text-align: center;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.step-desc {
  color: #777;
  font-size: 0.98rem;
  text-align: center;
  line-height: 1.5;
  max-width: 180px;
}

/* Responsive: 2 columns at <=992px */
@media (max-width: 992px) {
  .process-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 0;
    justify-items: center;
  }
  .process-connector-line {
    display: none;
  }
  .process-step {
    margin: 0 0 24px 0;
    max-width: 260px;
  }
}

/* Responsive: stacked at <=768px */
@media (max-width: 768px) {
  .process-section {
    padding: 44px 0 32px 0;
  }
  .process-steps {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .process-step {
    margin: 0 0 32px 0;
    max-width: 100%;
  }
  .process-connector-line {
    display: none;
  }
  .step-icon {
    margin-bottom: 14px;
  }
}
/* --- Our Projects Section --- */
.projects-section {
  background: #faf9f6;
  padding: 64px 0 72px 0;
}

.projects-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.projects-section-title {
  color: #2b2b2b;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.projects-section-underline {
  width: 60px;
  height: 3px;
  background: #ff5c8d;
  margin: 0 auto 16px auto;
  border-radius: 2px;
}

.projects-section-subtext {
  color: #777;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.projects-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.project-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(44, 44, 44, 0.07);
  padding: 40px 28px 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  will-change: transform, box-shadow;
}

.project-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 32px 0 rgba(44, 44, 44, 0.13);
}

.project-svg {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  width: 72px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-svg {
  transform: rotate(5deg) scale(1.07);
}

.project-title {
  color: #2b2b2b;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
  letter-spacing: -0.5px;
}

.project-category {
  color: #777777;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0;
}

/* Responsive: 2 columns at <=992px */
@media (max-width: 992px) {
  .projects-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .project-card {
    padding: 32px 20px 28px 20px;
  }
  .project-svg {
    height: 60px;
    width: 60px;
  }
}

/* Responsive: 1 column at <=768px */
@media (max-width: 768px) {
  .projects-cards-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 8px;
  }
  .project-card {
    padding: 24px 12px 20px 12px;
  }
  .project-svg {
    height: 48px;
    width: 48px;
  }
  .projects-section {
    padding: 40px 0 48px 0;
  }
  .projects-section-title {
    font-size: 2rem;
  }
}
/* --- Testimonials Section --- */
.testimonials-section {
  background: #fff;
  padding: 64px 0 72px 0;
}

.testimonials-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-section-title {
  color: #2b2b2b;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.testimonials-section-underline {
  width: 60px;
  height: 3px;
  background: #ff5c8d;
  margin: 0 auto 16px auto;
  border-radius: 2px;
}

.testimonials-section-subtext {
  color: #555555;
  font-size: 1.08rem;
  margin-bottom: 0;
}

.testimonials-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.testimonial-card {
  background: #fff;
  border: 2px solid #f0f0f0;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(44, 62, 80, 0.07);
  padding: 36px 28px 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
  border-color: #ff5c8d;
  box-shadow: 0 8px 32px 0 rgba(255, 92, 141, 0.13);
  transform: translateY(-5px);
}

.testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
  box-shadow: 0 2px 8px 0 rgba(44, 62, 80, 0.06);
}

.testimonial-client-name {
  color: #2b2b2b;
  font-weight: 600;
  font-size: 1.13rem;
  margin-bottom: 10px;
  letter-spacing: 0.1px;
  text-align: center;
}

.testimonial-quote {
  color: #555555;
  font-size: 1.04rem;
  font-style: italic;
  text-align: center;
  margin-bottom: 18px;
  line-height: 1.6;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  justify-content: center;
  align-items: center;
}

.testimonial-star {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  color: #ffc93c;
}

/* Responsive: 2 columns at <=992px */
@media (max-width: 992px) {
  .testimonials-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

/* Responsive: 1 column at <=768px */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 44px 0 48px 0;
  }
  .testimonials-cards {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 10px;
  }
  .testimonial-card {
    padding: 28px 14px 24px 14px;
  }
  .testimonial-avatar {
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
  }
  .testimonials-section-title {
    font-size: 1.45rem;
  }
  .testimonials-section-underline {
    width: 38px;
    height: 2px;
    margin-bottom: 10px;
  }
  .testimonial-client-name {
    font-size: 1rem;
    margin-bottom: 7px;
  }
  .testimonial-quote {
    font-size: 0.98rem;
    margin-bottom: 12px;
  }
  .testimonial-star {
    width: 16px;
    height: 16px;
  }
}
/* === About Us Section === */
.about-section {
  background: #fff;
  padding: 64px 0 64px 0;
}

.about-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 0 24px;
}

.about-image {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-svg {
  width: 100%;
  max-width: 320px;
  height: auto;
  transition: transform 0.5s cubic-bezier(0.4, 2, 0.6, 1);
  will-change: transform;
}

.about-image:hover .about-svg,
.about-image:focus .about-svg {
  transform: scale(1.06);
}

.about-text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.about-title {
  color: #2b2b2b;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.25em;
  text-align: left;
  width: 100%;
  letter-spacing: 0.01em;
}

.about-underline {
  width: 48px;
  height: 3px;
  background: #ff5c8d;
  border-radius: 2px;
  margin-bottom: 18px;
  margin-top: 0;
}

.about-subtext {
  color: #888;
  font-size: 1.08rem;
  margin-bottom: 28px;
  font-weight: 400;
}

.about-intro {
  color: #2b2b2b;
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.4;
}

.about-desc {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  margin-top: 0;
  max-width: 520px;
}

.about-cta-btn {
  display: inline-block;
  background: #ff5c8d;
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 0.85em 2.2em;
  border-radius: 28px;
  text-decoration: none;
  box-shadow: 0 2px 12px 0 rgba(255, 92, 141, 0.07);
  transition: background 0.25s, box-shadow 0.25s, transform 0.18s;
  border: none;
  outline: none;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.about-cta-btn:hover,
.about-cta-btn:focus {
  background: #ffc93c;
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(255, 201, 60, 0.13);
  transform: translateY(-2px) scale(1.04);
}

/* Responsive styles */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    gap: 36px;
    padding: 0 12px;
  }
  .about-image,
  .about-text {
    width: 100%;
    max-width: 600px;
  }
  .about-title {
    text-align: center;
  }
  .about-text {
    align-items: center;
    text-align: center;
  }
  .about-underline {
    margin-left: auto;
    margin-right: auto;
  }
  .about-desc {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 38px 0 38px 0;
  }
  .about-title {
    font-size: 1.45rem;
  }
  .about-intro {
    font-size: 1.01rem;
  }
  .about-desc {
    font-size: 0.98rem;
  }
  .about-svg {
    max-width: 220px;
  }
  .about-cta-btn {
    font-size: 1rem;
    padding: 0.7em 1.5em;
  }
}
/* === Contact Us Section === */
.contact-section {
  background: #faf9f6;
  padding: 64px 0 64px 0;
}

.contact-container {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 16px;
}

.contact-header {
  text-align: center;
  margin-bottom: 36px;
}

.contact-title {
  color: #2b2b2b;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.contact-underline {
  width: 54px;
  height: 2.5px;
  background: #ff5c8d;
  margin: 0 auto 16px auto;
  border-radius: 2px;
}

.contact-subtext {
  color: #555555;
  font-size: 1.08rem;
  margin-bottom: 0;
}

.contact-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
}

.contact-form {
  width: 100%;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  width: 100%;
}

.form-input {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1em 1.1em;
  font-size: 1.04rem;
  color: #2b2b2b;
  font-family: inherit;
  transition: border-color 0.18s;
  outline: none;
  box-sizing: border-box;
  margin: 0;
  resize: none;
}

.form-input:focus {
  border-color: #ff5c8d;
}

.form-textarea {
  min-height: 110px;
  max-height: 260px;
  resize: vertical;
}

.form-submit-btn {
  width: 100%;
  background: #ff5c8d;
  color: #ffffff;
  font-size: 1.09rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 1em 0;
  margin-top: 6px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 12px 0 rgba(255, 92, 141, 0.07);
  letter-spacing: 0.01em;
}

.form-submit-btn:hover,
.form-submit-btn:focus {
  background: #ffc93c;
  color: #2b2b2b;
  box-shadow: 0 4px 18px 0 rgba(255, 201, 60, 0.13);
}

.contact-details {
  width: 100%;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 12px;
  gap: 0.5em;
}

.contact-details-icon {
  margin-bottom: 10px;
}

.contact-details-info {
  text-align: center;
}

.contact-details-label {
  color: #2b2b2b;
  font-weight: 600;
  font-size: 1.08rem;
  margin-bottom: 2px;
}

.contact-details-text {
  color: #555555;
  font-size: 1.02rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.contact-details-email {
  color: #ff5c8d;
  font-weight: 600;
  font-size: 1.04rem;
  word-break: break-all;
}

/* Contact Section Styles */
.contact-wrapper {
  position: relative;
  background: #faf9f6;
  padding: 0;
  overflow: hidden;
  z-index: 1;
}

.contact-bg-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}
.contact-bg-svg svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-width: 320px;
  min-height: 220px;
  max-width: 100vw;
  max-height: 100vh;
}

.contact-container-new {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 32px 64px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-header-new {
  text-align: center;
  margin-bottom: 2.5em;
}

.contact-title_new {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 0.4em;
  letter-spacing: 0.01em;
}

.contact-subtext_new {
  color: #555;
  font-size: 1.18rem;
  font-weight: 400;
  margin-bottom: 0.2em;
}

.contact-content {
  display: flex;
  width: 100%;
  gap: 48px;
  align-items: flex-start;
  justify-content: center;
}

.contact-info-cards {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  min-width: 260px;
  max-width: 340px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1em;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(44, 44, 44, 0.06);
  padding: 1.4em 1.5em 1.4em 1.2em;
  background: #fff;
  transition: box-shadow 0.2s;
  border: none;
}

.contact-info-card:hover {
  box-shadow: 0 4px 24px 0 rgba(255, 92, 141, 0.1);
}

.contact-info-icon {
  font-size: 2.1em;
  margin-top: 0.1em;
  flex-shrink: 0;
}

.contact-info-label {
  font-weight: 600;
  color: #555555;
  font-size: 1.08em;
  margin-bottom: 0.2em;
}

.contact-info-detail {
  color: #555555;
  font-size: 1em;
  line-height: 1.5;
  word-break: break-word;
}

.contact-form-new {
  flex: 1 1 0;
  max-width: 420px;
  min-width: 260px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  box-shadow: 0 2px 24px 0 rgba(44, 44, 44, 0.07);
  padding: 2.2em 2em 2em 2em;
  display: flex;
  flex-direction: column;
  gap: 1.3em;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid #f3f3f3;
}

.form-group {
  width: 100%;
  margin-bottom: 0;
}

.form-input-new,
.form-textarea-new {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #e0e0e0;
  padding: 0.7em 0 0.4em 0;
  font-size: 1.08em;
  color: #2b2b2b;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  font-family: inherit;
  resize: none;
}

.form-input-new:focus,
.form-input-new:hover,
.form-textarea-new:focus,
.form-textarea-new:hover {
  border-bottom: 2px solid #ff5c8d;
  box-shadow: 0 2px 0 0 #ff5c8d22;
}

.form-textarea-new {
  min-height: 90px;
  max-height: 220px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff5c8d;
  color: #fff;
  font-weight: 600;
  font-size: 1.08em;
  border: none;
  border-radius: 999px;
  padding: 0.85em 2.2em;
  cursor: pointer;
  box-shadow: 0 2px 16px 0 rgba(255, 92, 141, 0.13);
  transition: background 0.22s, transform 0.18s, box-shadow 0.18s;
  outline: none;
  gap: 0.3em;
}

.contact-button:hover,
.contact-button:focus {
  background: #ffc93c;
  color: #fff;
  transform: scale(1.045);
  box-shadow: 0 4px 24px 0 rgba(255, 201, 60, 0.13);
}

.contact-button svg {
  display: inline-block;
  vertical-align: middle;
}

/* Responsive Styles */
@media (max-width: 1020px) {
  .contact-content {
    gap: 24px;
  }
  .contact-container_new {
    padding: 48px 10px 48px 10px;
  }
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    align-items: stretch;
    gap: 2.5em;
  }
  .contact-info-cards,
  .contact-form-new {
    max-width: 100%;
    min-width: 0;
  }
  .contact-container_new {
    padding: 36px 4vw 36px 4vw;
  }
  .contact-header_new {
    margin-bottom: 1.5em;
  }
}

@media (max-width: 480px) {
  .contact-title_new {
    font-size: 1.5rem;
  }
  .contact-form_new {
    padding: 1.2em 0.7em 1.2em 0.7em;
  }
  .contact-info-card {
    padding: 1em 0.7em 1em 0.7em;
  }
}

/* === Footer Section === */
.footer-section {
  background: #faf9f6;
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-top: 0;
  z-index: 1;
}

.footer-wave {
  width: 100%;
  height: 80px;
  line-height: 0;
  position: relative;
  z-index: 2;
}

.footer-bg-svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
}
.footer-bg-svg svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-width: 320px;
  min-height: 120px;
  max-width: 100vw;
  max-height: 100vh;
}

.footer-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px 32px 32px;
  display: flex;
  flex-direction: row;
  gap: 48px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-about {
  flex: 1 1 0;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 1.1em;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.7em;
  margin-bottom: 0.3em;
}

.footer-logo-svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: block;
}

.footer-logo-text {
  font-family: "Segoe UI", "Inter", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13em;
  color: #2b2b2b;
  letter-spacing: 0.01em;
}

.footer-about-desc {
  color: #555555;
  font-size: 1.01em;
  line-height: 1.7;
  margin-top: 0.2em;
}

.footer-links {
  flex: 1 1 0;
  min-width: 160px;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.7em;
}

.footer-links-title {
  font-weight: 700;
  color: #2b2b2b;
  font-size: 1.08em;
  margin-bottom: 0.5em;
  letter-spacing: 0.01em;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7em;
}

.footer-link {
  color: #2b2b2b;
  text-decoration: none;
  font-size: 1em;
  font-weight: 500;
  position: relative;
  transition: color 0.18s;
  padding-bottom: 2px;
}

.footer-link:hover,
.footer-link:focus {
  color: #ff5c8d;
}

.footer-link::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: #ff5c8d;
  transition: width 0.18s;
  position: absolute;
  left: 0;
  bottom: -2px;
  border-radius: 2px;
}

.footer-link:hover::after,
.footer-link:focus::after {
  width: 100%;
}

.footer-contact {
  flex: 1 1 0;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 0.7em;
}

.footer-contact-title {
  font-weight: 700;
  color: #2b2b2b;
  font-size: 1.08em;
  margin-bottom: 0.5em;
  letter-spacing: 0.01em;
}

.footer-contact-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(44, 44, 44, 0.06);
  padding: 1.1em 1.2em 1.1em 1.1em;
  display: flex;
  flex-direction: column;
  gap: 0.8em;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7em;
  color: #555555;
  font-size: 1em;
  line-height: 1.5;
}

.footer-contact-icon {
  font-size: 1.25em;
  margin-top: 0.1em;
  flex-shrink: 0;
}

.footer-contact-text {
  color: #555555;
  font-size: 1em;
  word-break: break-word;
}

.footer-copyright {
  background: #ffedf2;
  color: #2b2b2b;
  text-align: center;
  font-size: 1em;
  font-weight: 500;
  padding: 1.1em 0 1em 0;
  margin-top: 0;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  letter-spacing: 0.01em;
  z-index: 4;
  position: relative;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .footer-content {
    gap: 24px;
    padding: 36px 10px 24px 10px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 2.2em;
    padding: 32px 4vw 18px 4vw;
    text-align: center;
  }
  .footer-about,
  .footer-links,
  .footer-contact {
    max-width: 100%;
    min-width: 0;
    align-items: center;
  }
  .footer-logo-row {
    justify-content: center;
  }
  .footer-contact-card {
    align-items: center;
  }
  .footer-contact-row {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 22px 2vw 10px 2vw;
  }
  .footer-logo-svg {
    width: 26px;
    height: 26px;
  }
  .footer-logo-text {
    font-size: 1em;
  }
  .footer-contact-card {
    padding: 0.7em 0.5em 0.7em 0.5em;
  }
  .footer-copyright {
    font-size: 0.97em;
    padding: 0.8em 0 0.8em 0;
  }
}
