@font-face {
  font-family: 'Neue Haas Grotesk Display Pro:55 Roman';
  font-style: normal;
  font-weight: 400 653;
  font-display: swap;
  src: url(../fonts/NHaasGroteskDSPro55Rg.woff2) format("woff2");
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Neue Haas Grotesk Display Pro:55 Roman", sans-serif;
}

.heading-form-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.heading-form-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  gap: 40px;
}

.heading-content {
  flex: 1 1 45%;
}

.heading-content h1 {
  font-size: 61px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

.heading-content p {
  font-size: 1rem;
  color: #333;
}

.form-box {
  flex: 1 1 45%;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row .form-group {
  flex: 1;
}

.form-box button {
  width: 100%;
  background-color: #66e093;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.form-box button:hover {
  background-color: #58cd81;
}

.solo-image-section {
  position: relative;
  margin-bottom: 50px;
}

.solo-image-section img {}

@media (max-width: 768px) {
  .heading-form-container {
    flex-direction: column;
  }

  .heading-content,
  .form-box {
    flex: 1 1 100%;
  }
}


.hero-section {
  display: flex;
  min-height: 100vh;
  align-items: center;
}

.hero-image {
  flex: 1;
  position: relative;
  background: linear-gradient(135deg, rgba(255, 105, 135, 0.8), rgba(255, 140, 105, 0.6)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect width="800" height="600" fill="%23f0f0f0"/><rect x="50" y="100" width="300" height="400" fill="%23d4a574" rx="10"/><rect x="400" y="50" width="350" height="500" fill="%23ffffff"/><rect x="420" y="80" width="100" height="60" fill="%23333" rx="5"/><rect x="540" y="80" width="100" height="60" fill="%23333" rx="5"/><rect x="420" y="160" width="220" height="30" fill="%23ddd" rx="3"/><rect x="420" y="210" width="180" height="20" fill="%23ddd" rx="2"/><circle cx="100" cy="50" r="15" fill="%23ff6b87"/><circle cx="150" cy="30" r="10" fill="%23ff8c69"/><circle cx="200" cy="40" r="12" fill="%23ffb347"/></svg>');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 40px;
}

.cooking-school-badge {
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  color: #333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-content {
  flex: 1;
  padding: 60px 80px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(248, 250, 252, 0.95) 50%,
      rgba(241, 245, 249, 0.9) 100%);
  z-index: -1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #ff6b87, #ff8c69);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 90%;
}

.hero-description-2 {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 95%;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
}

.btn-primary {
  background: linear-gradient(135deg, #1a1a1a, #333);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #333, #555);
}

.btn-secondary {
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}

.btn-secondary:hover {
  background: #1a1a1a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Decorative elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 107, 135, 0.1), rgba(255, 140, 105, 0.1));
  animation: float 6s ease-in-out infinite;
}

.circle-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  right: 15%;
  animation-delay: 0s;
}

.circle-2 {
  width: 60px;
  height: 60px;
  top: 70%;
  right: 25%;
  animation-delay: 2s;
}

.circle-3 {
  width: 80px;
  height: 80px;
  top: 40%;
  right: 5%;
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.8;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    padding: 50px 60px;
  }

  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    min-height: auto;
  }

  .hero-image {
    height: 50vh;
    min-height: 300px;
  }

  .hero-content {
    padding: 40px 30px;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .hero-description-2 {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-image {
    height: 40vh;
    min-height: 250px;
    padding: 20px;
  }

  .cooking-school-badge {
    font-size: 12px;
    padding: 10px 16px;
  }

  .hero-content {
    padding: 30px 20px;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-description,
  .hero-description-2 {
    max-width: 100%;
  }

  .btn {
    padding: 12px 24px;
    font-size: 13px;
  }
}

.section-image-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 80px 0px;
  background-color: #fff;
}

.section-image-text .image-wrapper {
  flex: 1;
  min-width: 300px;
}

.section-image-text .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.section-image-text .text-content {
  flex: 1;
  max-width: 600px;
}

.section-image-text .text-content h2 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-image-text .text-content p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 24px;
  line-height: 1.6;
}

.section-image-text .cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section-image-text .btn {
  padding: 10px 20px;
  border-radius: 20px;
  border: 1px solid #000;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.section-image-text .btn:hover {
  background-color: #000;
  color: #fff;
}

.section-image-text .btn.dark {
  background-color: #000;
  color: #fff;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .section-image-text {
    gap: 40px;
  }

  .section-image-text .text-content h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .section-image-text {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .section-image-text .text-content {
    max-width: 100%;
  }

  .section-image-text .text-content h2 {
    font-size: 1.5rem;
  }

  .section-image-text .cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .section-image-text .text-content h2 {
    font-size: 1.3rem;
  }

  .section-image-text .text-content p {
    font-size: 0.95rem;
  }

  .section-image-text .btn {
    width: 100%;
    padding: 12px 0;
  }

  .section-image-text .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

.section-space-approach {
  padding: 80px 40px;
  background-color: #f7f7f7;
  text-align: center;
}

.section-space-approach .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-space-approach h2 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-space-approach .subheading {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #333;
  line-height: 1.6;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.feature-item {
  flex: 1 1 200px;
  max-width: 250px;
}

.feature-item img {
  height: 40px;
  margin-bottom: 16px;
  width: 40px;
  margin: 0 auto;
}

.feature-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.feature-item-img-cont {
  margin-bottom: 15px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 10px 20px;
  border-radius: 20px;
  border: 1px solid #000;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #000;
  color: #fff;
}

.btn.dark {
  background-color: #000;
  color: #fff;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .section-space-approach h2 {
    font-size: 1.75rem;
  }

  .feature-item {
    max-width: 45%;
  }
}

@media (max-width: 768px) {
  .section-space-approach {
    padding: 60px 20px;
  }

  .section-space-approach h2 {
    font-size: 1.5rem;
  }

  .features-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .feature-item {
    max-width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .section-space-approach h2 {
    font-size: 1.4rem;
  }

  .section-space-approach .subheading {
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
    padding: 12px 0;
  }
}

.concierge-support {
  padding: 80px 40px;
  background: #fff;
  text-align: center;
}

.concierge-support h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.concierge-support .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 24px;
  text-align: left;
}

.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

.card-icon {
  background-color: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.card-icon.green {
  background-color: #b1f6c6;
  color: #000;
}

.card-icon .icon-wrapper {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.card-icon .icon-wrapper img {
  width: 100%;
  height: auto;
}

.cta-button {
  margin-top: 40px;
}

.btn {
  padding: 12px 24px;
  border-radius: 24px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn.green {
  background-color: #b1f6c6;
  color: #000;
}

.btn:hover {
  opacity: 0.85;
}

.section-team .team-item {
  max-width: calc(25% - 40px);
}

/* body.page-id-36860 .heading-form-section.v2 h1{
  font-size:73px;
} */

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
  .concierge-support .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .concierge-support {
    padding: 60px 20px;
  }

  .concierge-support h2 {
    font-size: 1.75rem;
  }

  .concierge-support .grid {
    grid-template-columns: 1fr;
  }

  .card {
    text-align: center;
  }

  .card-icon {
    align-items: center;
    text-align: center;
  }

  .section-team .team-item {
    max-width: 100%;
    flex: 1 1 calc(25% - 40px);
  }
}

#field_11_4 .ginput_container_phone>.iti--allow-dropdown>.iti__flag-container {
  display: none;
}
.section-team.v2 .team-item:first-child,
.section-team.v2 .team-item:nth-child(2){
  display:none;
}