/* ===== INHIBIT CSS for Internship Page ===== */

:root {
    --green: #117911;
    --red: #ab1313;
    --green-light: #1d9e1d;
    --green-dark: #0a4f0a;
    --red-light: #c91e1e;
    --red-dark: #7a0d0d;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-card: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #6c757d;
    --border-color: #e9ecef;
    --radius: 14px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== HERO ===== */
.intern-hero {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f0f4f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0 80px;
}

.hero-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
}
.shape-dots-tl {
    top: -80px;
    left: -80px;
    background: var(--green);
}
.shape-dots-bl {
    bottom: -100px;
    left: 20%;
    background: var(--red);
}
.shape-dots-tr {
    top: 10%;
    right: -60px;
    background: var(--green);
    opacity: 0.03;
}

.intern-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.intern-hero-left {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(17, 121, 17, 0.08);
    border: 1px solid rgba(17, 121, 17, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--green);
    margin-bottom: 20px;
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.intern-hero-headline {
    font-size: clamp(36px, 5.5vw, 58px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.intern-hero-headline .accent-green {
    color: var(--green);
}
.intern-hero-headline .accent-red {
    color: var(--red);
}

.intern-hero-sub {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 540px;
}

.intern-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--green);
}
.btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 121, 17, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    color: var(--text-dark);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}
.btn-outline:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
}

.btn-primary .arrow,
.btn-outline .arrow {
    font-size: 20px;
    line-height: 1;
}

.intern-hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}
.stat-number span {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-muted);
}
.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Hero right */
.intern-hero-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.hero-bg-circle {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(17, 121, 17, 0.15) 0%,
        transparent 70%
    );
    animation: float-circle 6s ease-in-out infinite;
}
@keyframes float-circle {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-student-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
    animation: float-image 7s ease-in-out infinite;
}
@keyframes float-image {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.02);
    }
}

/* Floating badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    padding: 10px 16px;
    border-radius: 12px;
    z-index: 3;
    animation: float 5s ease-in-out infinite;
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.badge-learn {
    top: 15%;
    right: 5%;
    animation-delay: 0s;
}
.badge-earn {
    bottom: 25%;
    left: 0;
    animation-delay: 0.5s;
}
.badge-percent {
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}
.badge-learn .badge-icon {
    background: var(--green);
}
.badge-earn .badge-icon {
    background: var(--green-dark);
}
.badge-percent .badge-icon {
    background: var(--red);
}

.badge-text {
    display: flex;
    flex-direction: column;
}
.badge-text strong {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.2;
}
.badge-text span {
    font-size: 11px;
    color: var(--text-muted);
}

/* ===== ABOUT ===== */
.intern-about {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-head {
    max-width: 700px;
    margin: 0 auto 48px;
}
.section-label {
    display: inline-block;
    background: rgba(17, 121, 17, 0.1);
    color: var(--green);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.heading-h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 8px;
}
.heading-h2 .accent-green {
    color: var(--green);
}
.heading-h2 .accent-red {
    color: var(--red);
}

.underline-scribble-img {
    display: inline-block;
    max-width: 200px;
    opacity: 0.5;
}

.text-center {
    text-align: center;
}
.mb-5 {
    margin-bottom: 48px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
}
.about-card:hover {
    transform: translateY(-4px);
    border-color: var(--green);
    box-shadow: 0 12px 40px rgba(17, 121, 17, 0.08);
}

.about-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(17, 121, 17, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--green);
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.about-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

.about-highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(
        135deg,
        rgba(17, 121, 17, 0.08) 0%,
        rgba(171, 19, 19, 0.05) 100%
    );
    border: 1px solid rgba(17, 121, 17, 0.2);
    border-radius: var(--radius);
    padding: 24px 28px;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(17, 121, 17, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--green);
}

.highlight-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}
.highlight-text strong {
    color: var(--text-dark);
}

/* ===== FORM ===== */
.intern-form-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.form-wrapper {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.form-left {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px 32px;
    display: flex;
    align-items: center;
}

.form-left-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.form-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}

.form-benefits li i {
    color: var(--green);
    font-size: 18px;
    margin-top: 2px;
}

.form-left-cta {
    font-size: 16px;
    font-weight: 600;
    color: var(--green);
}

.form-right {
    flex: 1.3;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px 32px;
}

.intern-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.intern-form input,
.intern-form select,
.intern-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-dark);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    box-sizing: border-box;
}

.intern-form input:focus,
.intern-form select:focus,
.intern-form textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(17, 121, 17, 0.12);
}

.intern-form textarea {
    resize: vertical;
    min-height: 80px;
}

.form-row-flex {
    display: flex;
    gap: 16px;
}
.form-row-flex > * {
    flex: 1;
}

.intern-submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.intern-submit-btn:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 121, 17, 0.25);
}

/* ===== TIMELINE ===== */
.intern-timeline {
    padding: 100px 0;
    background: var(--bg-white);
}

.timeline-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.timeline-card {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}
.timeline-card:hover {
    transform: translateY(-4px);
    border-color: var(--green);
}

.tl-step {
    display: inline-block;
    background: rgba(17, 121, 17, 0.12);
    color: var(--green);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.tl-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(17, 121, 17, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--green);
    margin: 0 auto 16px;
}

.timeline-apply .tl-icon {
    color: var(--green);
}
.timeline-learn .tl-icon {
    color: var(--green);
    background: rgba(17, 121, 17, 0.15);
}
.timeline-work .tl-icon {
    color: var(--red);
    background: rgba(171, 19, 19, 0.1);
}

.timeline-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.timeline-card > p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.tl-details {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.tl-details li {
    padding: 6px 0;
    font-size: 13px;
    color: var(--text-muted);
    position: relative;
    padding-left: 20px;
}
.tl-details li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.5;
}

.timeline-arrow {
    display: flex;
    align-items: center;
    padding-top: 80px;
    font-size: 24px;
    color: var(--green);
    opacity: 0.4;
}

/* ===== BENEFITS ===== */
.intern-benefits {
    padding: 100px 0;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: var(--transition);
}
.benefit-card:hover {
    border-color: var(--green);
    transform: translateY(-3px);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--green);
    background: rgba(17, 121, 17, 0.1);
    margin-bottom: 16px;
}

.benefit-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ===== TESTIMONIALS ===== */
.intern-testimonials {
    padding: 100px 0;
    background: var(--bg-white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card-intern {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: var(--transition);
}
.testimonial-card-intern:hover {
    border-color: var(--green);
    transform: translateY(-3px);
}

.t-quote {
    font-size: 24px;
    color: var(--green);
    opacity: 0.3;
    margin-bottom: 16px;
}

.t-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 20px;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-avatar {
    font-size: 36px;
    color: var(--text-muted);
    opacity: 0.5;
}

.t-author strong {
    display: block;
    font-size: 15px;
    color: var(--text-dark);
}

.t-author span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== FAQ ===== */
.intern-faq {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    user-select: none;
}
.faq-question:hover {
    color: var(--green);
}
.faq-question i {
    transition: var(--transition);
    font-size: 14px;
    color: var(--text-muted);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-answer p {
    padding: 0 24px 18px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ===== CTA ===== */
.intern-cta {
    padding: 80px 0;
    background: var(--bg-light);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(
        135deg,
        rgba(17, 121, 17, 0.08) 0%,
        rgba(171, 19, 19, 0.05) 100%
    );
    border: 1px solid rgba(17, 121, 17, 0.2);
    border-radius: var(--radius);
    padding: 60px 40px;
}

.cta-box h2 {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.cta-box h2 .accent-green {
    color: var(--green);
}
.cta-box h2 .accent-red {
    color: var(--red);
}

.cta-box p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.btn-large {
    padding: 16px 48px;
    font-size: 18px;
}

/* ===== SWEETALERT2 CUSTOM (matches elevate.css) ===== */
.swal2-popup {
  background: rgba(255, 255, 255, 0.65) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  color: #333;
  padding: 2.5rem 2rem;
  max-width: 400px;
}
.swal2-title {
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0;
  padding: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.swal2-html-container {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.65);
  margin-top: 10px;
  padding: 0 10px;
}
.swal2-confirm {
  background: linear-gradient(135deg, #00c48c, #02a97e) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 0.9rem 2.5rem !important;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
.swal2-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.swal2-cancel {
  background-color: rgba(255, 255, 255, 0.5) !important;
  color: #333 !important;
  border-radius: 50px !important;
  padding: 0.9rem 2.5rem !important;
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease;
}
.swal2-cancel:hover {
  background-color: rgba(0, 0, 0, 0.05) !important;
}
.swal2-icon {
  width: 60px !important;
  height: 60px !important;
  margin: 0 auto 20px auto !important;
}
.swal2-icon.swal2-success {
  border-color: #00c48c !important;
  color: #00c48c !important;
}
.swal2-icon.swal2-success [class^="swal2-success-line"] {
  background-color: #00c48c !important;
}
.swal2-icon.swal2-success .swal2-success-ring {
  border-color: rgba(0, 196, 140, 0.3) !important;
}
.swal2-icon.swal2-error {
  border-color: #e74c3c !important;
  color: #e74c3c !important;
}
.swal2-icon.swal2-error .swal2-x-mark-line {
  background-color: #e74c3c !important;
}

/* ===== RESPONSIVE HIDE FORM-LEFT ===== */
@media (max-width: 1199px) {
    .form-left {
        display: none;
    }
}



/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .intern-hero-container {
        flex-direction: column;
        text-align: center;
    }
    .intern-hero-left {
        max-width: 100%;
    }
    .intern-hero-sub {
        margin: 0 auto 32px;
    }
    .intern-hero-actions {
        justify-content: center;
    }
    .intern-hero-stats {
        justify-content: center;
    }
    .intern-hero-right {
        min-height: 300px;
    }
    .hero-bg-circle {
        width: 300px;
        height: 300px;
    }
    .floating-badge {
        display: none;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .timeline-grid {
        flex-direction: column;
    }
    .timeline-arrow {
        transform: rotate(90deg);
        padding-top: 0;
        justify-content: center;
    }
    .form-wrapper {
        flex-direction: column;
    }
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .intern-hero {
        padding: 100px 0 60px;
    }
    .intern-hero-headline {
        font-size: 28px;
    }
    .intern-hero-sub {
        font-size: 15px;
    }
    .intern-hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    .stat-number {
        font-size: 28px;
    }
    .form-row-flex {
        flex-direction: column;
        gap: 12px;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .about-card,
    .form-left,
    .form-right {
        padding: 24px 20px;
    }
    .cta-box {
        padding: 40px 24px;
    }
}
