/* ISO / Become an ISO page styles */

.iso-page .nav-link-gc.active-page {
  color: var(--gc-green-primary);
}

.iso-page .nav-link-gc.active-page::after {
  width: 100%;
}

.iso-page,
.iso-main {
  overflow-x: hidden;
}

.iso-main {
  padding-top: 88px;
  background: #fff;
}

@media (min-width: 768px) {
  .iso-main {
    padding-top: 120px;
  }
}

/* Hero Banner */
.iso-hero {
  background: linear-gradient(135deg, var(--gc-green-primary) 0%, var(--gc-green-dark) 100%);
  padding: 140px 0 80px;
  color: white;
  position: relative;
  overflow: hidden;
}

.iso-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 2px 2px, #fff 1px, transparent 0);
  background-size: 32px 32px;
}

.iso-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
}

.iso-hero .breadcrumb-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  position: relative;
}

.iso-hero .breadcrumb-text a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.iso-hero .breadcrumb-text a:hover {
  color: var(--gc-gold);
}

/* Main ISO Section */
.iso-section {
  padding: 80px 0;
}

@media (min-width: 992px) {
  .iso-section {
    padding: 112px 0;
  }
}

/* Form Card */
.iso-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 140px;
}

@media (min-width: 992px) {
  .iso-form-card {
    padding: 48px 40px;
  }
}

.iso-form-card h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--gc-charcoal);
  margin-bottom: 8px;
}

.iso-form-card .form-subtitle {
  color: rgba(26, 26, 46, 0.6);
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.6;
}

.iso-form-card .form-label {
  font-weight: 600;
  color: var(--gc-charcoal);
  margin-bottom: 6px;
  font-size: 14px;
}

.iso-form-card .form-control,
.iso-form-card .form-select {
  min-height: 50px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 16px;
  background: #f9fafb;
  color: var(--gc-charcoal);
  font-size: 15px;
  transition: all 0.2s ease;
}

.iso-form-card .form-control::placeholder {
  color: rgba(26, 26, 46, 0.4);
}

.iso-form-card .form-control:focus,
.iso-form-card .form-select:focus {
  border-color: var(--gc-green-primary);
  box-shadow: 0 0 0 0.2rem rgba(27, 94, 32, 0.12);
  background: #fff;
}

.iso-form-card textarea.form-control {
  min-height: 120px;
  resize: none;
}

.iso-form-card .form-select {
  color: rgba(26, 26, 46, 0.4);
}

.iso-form-card .form-select:focus,
.iso-form-card .form-select:valid {
  color: var(--gc-charcoal);
}

.iso-form-card .btn-submit {
  min-height: 54px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Right Side Content */
.iso-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gc-charcoal);
  margin-bottom: 20px;
}

.iso-content .intro-text {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(26, 26, 46, 0.7);
  margin-bottom: 32px;
}

/* Benefits Grid */
.iso-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 48px;
}

@media (max-width: 575.98px) {
  .iso-benefits {
    grid-template-columns: 1fr;
  }
}

.iso-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(27, 94, 32, 0.04);
  border-radius: 10px;
  border: 1px solid rgba(27, 94, 32, 0.08);
  transition: all 0.2s ease;
}

.iso-benefit-item:hover {
  background: rgba(27, 94, 32, 0.08);
  border-color: rgba(27, 94, 32, 0.15);
}

.iso-benefit-item .benefit-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: var(--gc-green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.iso-benefit-item .benefit-check svg,
.iso-benefit-item .benefit-check .lucide {
  width: 12px;
  height: 12px;
  color: #fff;
  stroke: #fff;
  stroke-width: 3;
}

.iso-benefit-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--gc-charcoal);
  line-height: 1.4;
}

/* Content Blocks */
.iso-content-block {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.iso-content-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.iso-content-block h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gc-charcoal);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.iso-content-block h3 .block-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: rgba(27, 94, 32, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.iso-content-block h3 .block-icon svg,
.iso-content-block h3 .block-icon .lucide {
  width: 18px;
  height: 18px;
  color: var(--gc-green-primary);
  stroke: var(--gc-green-primary);
}

.iso-content-block p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(26, 26, 46, 0.65);
  margin-bottom: 0;
}

/* Referral Banner */
.iso-referral-banner {
  background: linear-gradient(135deg, var(--gc-green-primary) 0%, var(--gc-green-dark) 100%);
  border-radius: 16px;
  padding: 32px;
  color: white;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.iso-referral-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle at 2px 2px, #fff 1px, transparent 0);
  background-size: 24px 24px;
}

.iso-referral-banner h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  color: #fff;
}

.iso-referral-banner p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  position: relative;
}

.iso-referral-banner .referral-amount {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gc-gold);
  line-height: 1;
  margin-bottom: 4px;
  position: relative;
}

.iso-referral-banner small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
}

/* CTA Section */
.iso-cta-section {
  background: var(--gc-off-white);
  padding: 64px 0;
}

.iso-cta-section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--gc-charcoal);
}

.iso-cta-section p {
  font-size: 17px;
  color: rgba(26, 26, 46, 0.6);
  line-height: 1.6;
}

/* Nav ISO link highlight (red) */
.nav-link-iso {
  color: #dc2626 !important;
  font-weight: 700 !important;
}

.nav-link-iso:hover {
  color: #b91c1c !important;
}

.nav-link-iso::after {
  background: #dc2626 !important;
}

/* Responsive */
@media (max-width: 991.98px) {
  .iso-hero {
    padding-top: 112px;
  }

  .iso-form-card {
    position: static;
    margin-bottom: 48px;
  }
}

@media (max-width: 575.98px) {
  .iso-form-card {
    padding: 28px 20px;
  }

  .iso-referral-banner {
    padding: 24px 20px;
  }
}


        .success-message {
            display: none;
            background: linear-gradient(135deg, var(--gc-green-light), var(--gc-green-primary));
            color: white;
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
        }

        .success-message i {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
