/* ============================================
   Contact2 Page CSS - Solar Surge
   ============================================ */

:root {
  --ct2-gradient: linear-gradient(90deg, #69eefd 0%, #efc052 54.33%, #f19231 100%);
  --ct2-navy: #0d192e;
  --ct2-orange: #f19231;
  --ct2-cyan: #69eefd;
}

/* ===== HERO ===== */
.ct2-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  max-height: 1080px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ct2-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ct2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.3) 0%, rgba(37,74,95,0.5) 100%);
}

.ct2-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1208px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 0 40px;
}

.ct2-hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 60px);
  line-height: 1.17;
  color: #fff;
  text-transform: uppercase;
}

.ct2-hero-content p {
  font-size: clamp(1rem, 1.8vw, 30px);
  line-height: 1.38;
  color: #fff;
  max-width: 865px;
}

/* ===== SHARED ===== */
.ct2-label {
  display: block;
  font-weight: 500;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--ct2-orange);
}

.ct2-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 60px);
  line-height: 1.17;
  color: rgba(13, 25, 46, 0.8);
}

/* ===== 24HR RESPONSE ===== */
.ct2-response {
  padding: 80px 0 40px;
}

.ct2-response-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.ct2-response-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3vw, 50px);
  line-height: 1;
  max-width: 540px;
  background: var(--ct2-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ct2-response-sub {
  font-size: 26px;
  color: var(--ct2-navy);
  max-width: 725px;
  line-height: 1.4;
  margin-top: 8px;
}

.ct2-response-big {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(80px, 10vw, 150px);
  line-height: 0.92;
  background: var(--ct2-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ct2-response-divider {
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

/* ===== CHOOSE YOUR PATH ===== */
.ct2-path {
  padding: 60px 0 100px;
}

.ct2-path-header {
  text-align: center;
  margin-bottom: 50px;
}

.ct2-path-header .ct2-heading {
  margin-top: 4px;
}

.ct2-path-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ct2-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 24px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}

.ct2-card--featured {
  border: 2px solid var(--ct2-orange);
}

.ct2-card-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--ct2-orange);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.ct2-card-icon {
  width: 48px;
  height: 48px;
}

.ct2-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--ct2-navy);
}

.ct2-card > p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.ct2-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct2-card-list li {
  font-size: 15px;
  color: var(--ct2-navy);
  padding-left: 24px;
  position: relative;
}

.ct2-card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

.ct2-card-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.ct2-card-info-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ct2-card-info-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--ct2-navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ct2-card-info-item span:last-child {
  font-size: 15px;
  color: #555;
  line-height: 1.4;
}

.ct2-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 73px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: auto;
}

.ct2-card-btn:hover {
  transform: translateY(-2px);
}

.ct2-card-btn--primary {
  background: var(--ct2-gradient);
  color: #000;
}

.ct2-card-btn--primary:hover {
  box-shadow: 0 6px 20px rgba(241, 146, 49, 0.3);
}

.ct2-card-btn--outline {
  background: #fff;
  color: var(--ct2-navy);
  border: 2px solid var(--ct2-navy);
}

.ct2-card-btn--outline:hover {
  box-shadow: 0 6px 20px rgba(13, 25, 46, 0.15);
}

/* ===== INQUIRY FORM ===== */
.ct2-inquiry-form,
.ct2-inquiry-success {
  width: 100%;
}

.ct2-form-divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.ct2-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 480px) {
  .ct2-form-row {
    grid-template-columns: 1fr;
  }
}

.ct2-form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
  width: 100%;
}

.ct2-form-group label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--ct2-navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ct2-form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d1d5db;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--ct2-navy);
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  box-sizing: border-box;
}

.ct2-form-input:focus {
  border-color: var(--ct2-orange);
  box-shadow: 0 0 0 3px rgba(241, 146, 49, 0.12);
  background: #fff;
}

.ct2-form-input::placeholder {
  color: #aaa;
}

.ct2-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.ct2-form-select option[disabled] {
  color: #aaa;
}

.ct2-form-textarea {
  resize: vertical;
  min-height: 100px;
}

.ct2-form-submit {
  width: 100%;
  margin-top: 6px;
  cursor: pointer;
  border: none;
  font-size: 16px;
  height: 52px;
}

.ct2-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.ct2-form-disclaimer {
  font-size: 13px;
  color: #999;
  text-align: center;
  margin-top: 8px;
}

.ct2-success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.ct2-success-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--ct2-navy);
  text-align: center;
  margin-bottom: 4px;
}

.ct2-success-text {
  font-size: 15px;
  color: #555;
  text-align: center;
  line-height: 1.5;
}

/* ===== TRUST ===== */
.ct2-trust {
  background: #e9e9e9;
  padding: 100px 0;
}

.ct2-trust-cols {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1284px;
  margin: 0 auto;
}

.ct2-trust-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 7px;
  padding: 0 20px;
}

.ct2-trust-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.ct2-trust-icon img {
  max-width: 100%;
  max-height: 100%;
}

.ct2-trust-col h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(1.2rem, 2vw, 30px);
  line-height: 1.1;
  color: var(--ct2-navy);
}

.ct2-trust-col p {
  font-size: 16px;
  color: var(--ct2-navy);
  line-height: 1.5;
  max-width: 289px;
}

.ct2-trust-divider {
  width: 1px;
  height: 279px;
  background: rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  align-self: center;
}

/* ===== CTA ===== */
.ct2-cta {
  background: var(--ct2-navy);
  padding: 100px 0;
  text-align: center;
}

.ct2-cta-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 60px);
  line-height: 1.04;
  color: #fff;
  max-width: 1320px;
  margin: 0 auto 8px;
}

.ct2-cta-sub {
  font-size: clamp(1rem, 1.5vw, 26px);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 48px;
}

.ct2-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 400px;
  height: 82px;
  padding: 0 60px;
  background: var(--ct2-gradient);
  border-radius: 73px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #000;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ct2-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(241, 146, 49, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .ct2-path-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .ct2-response-row {
    flex-direction: column;
    text-align: center;
  }

  .ct2-response-heading {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .ct2-hero {
    height: auto;
    min-height: 80vh;
    padding: 140px 0 80px;
  }

  .ct2-response {
    padding: 60px 0 30px;
  }

  .ct2-response-sub {
    font-size: 18px;
  }

  .ct2-trust-cols {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .ct2-trust-divider {
    width: 200px;
    height: 1px;
  }

  .ct2-cta-btn {
    min-width: auto;
    width: 100%;
    max-width: 400px;
    height: 64px;
    font-size: 18px;
    padding: 0 32px;
  }

}

@media (max-width: 480px) {
  .ct2-hero-content h1 {
    font-size: 1.6rem;
  }

  .ct2-hero-content p {
    font-size: 1rem;
  }

  .ct2-label {
    font-size: 16px;
  }
}
