.ct-hero {
  position: relative;
  overflow: hidden;
  background: #1c1c1c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 140px 24px 110px;
}

.ct-hero-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(46, 195, 150, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.ct-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 80% at 50% 0%, rgba(5, 46, 70, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.ct-hero-inner {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  z-index: 1;
}

.ct-hero-inner .section-label {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #fff;
  display: block;
  margin-bottom: 20px;
}

.ct-hero-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 2.4rem;
}

.ct-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.ct-hero-ctas .left-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(46,195,150,0.9), rgba(96,149,190,0.85));
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(46,195,150,0.2), 0 0 40px rgba(96,149,190,0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: unset;
}

.ct-hero-ctas .left-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.ct-hero-ctas .left-btn:hover::before {
  width: 300px;
  height: 300px;
}

.ct-hero-ctas .left-btn:hover {
  background: linear-gradient(90deg, rgba(46,195,150,1), rgba(96,149,190,0.95));
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(46,195,150,0.25), 0 0 50px rgba(96,149,190,0.25);
}

.ct-hero-ctas .right-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 999px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: none;
  transition: all 0.3s ease;
  min-width: unset;
}

.ct-hero-ctas .right-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .ct-hero {
    padding: 100px 20px 80px;
  }
  .ct-hero-sub {
    max-width: 100%;
  }
}

.ct-cards-section {
  padding: 0 24px;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ct-cards-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin: 0 auto;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.ct-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 36px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  transition: background 0.25s ease;
}

.ct-card:hover {
  background: rgba(255, 255, 255, 0.04);
}

.ct-card:hover .ct-card-arrow {
  opacity: 1;
  transform: translateX(3px);
}

.ct-card:hover .ct-card-value {
  color: #fff;
}

.ct-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: rgba(46, 195, 150, 0.85);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ct-card:hover .ct-card-icon {
  background: none;
  color: #fff;
}

.ct-card-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 0;
}

.ct-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.ct-card-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.25s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ct-card-arrow {
  font-size: 0.78rem;
  color: rgba(46, 195, 150, 0.7);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}

.ct-form-section {
  padding: 40px 24px 80px;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ct-form-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}

.ct-form-header .section-label {
  margin-bottom: 14px;
}

.ct-form-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.ct-form-header p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

.ct-form-section .signup-page-wrapper {
  background: transparent;
  padding: 0;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 0;
}

.ct-form-section .signup-page-wrapper .enquiry-panel {
  max-width: 1100px;
}

.ct-form-section .signup-page-wrapper.expanded .enquiry-panel {
  max-width: 400px;
}

.ct-form-section .signup-page-wrapper.expanded .fp-clip {
  max-width: 680px;
}

.ct-location-section {
  padding: 80px 24px;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ct-location-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.ct-location-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ct-location-info .section-label {
  margin-bottom: 0;
}

.ct-location-info h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.025em;
}

.ct-location-info address {
  font-style: normal;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.9;
  border-left: 2px solid rgba(46, 195, 150, 0.4);
  padding-left: 16px;
}

.ct-socials {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ct-socials-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.ct-social-icons {
  display: flex;
  gap: 12px;
}

.ct-social-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.ct-social-icon:hover {
  color: #fff;
  transform: translateY(-2px);
}

.ct-social-icon:hover i {
  color: #fff;
  transform: none;
  text-shadow: none;
}

.ct-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  height: 440px;
}

.ct-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 960px) {
  .ct-form-section .signup-page-wrapper .enquiry-panel,
  .ct-form-section .signup-page-wrapper.expanded .enquiry-panel {
    max-width: 100%;
  }

  .ct-form-section .signup-page-wrapper.expanded .fp-clip {
    max-width: none;
  }

  .ct-form-section .signup-page-wrapper,
  .ct-form-section .signup-page-wrapper.expanded {
    padding: 0;
  }
}

@media (max-width: 1024px) {
  .ct-location-inner {
    grid-template-columns: 1fr;
  }
  .ct-map {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .ct-cards-inner {
    grid-template-columns: 1fr;
    border-left: none;
  }
  .ct-card {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
  }
  .ct-form-section {
    padding: 56px 20px;
  }
  .ct-location-section {
    padding: 56px 20px;
  }
  .ct-map {
    height: 280px;
  }
}



