/* ======================== */
/* GENERAL & RESET STYLES */
/* ======================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #f39c12;
    --color-primary-dark: #d68910;
    --color-secondary: #ff8a1a;
    --color-light-blue: #e8f4f8;
    --color-white: #ffffff;
    --color-dark: #333333;
    --color-gray: #666666;
    --color-light-gray: #f5f5f5;
    --color-border: #e0e0e0;
    --color-success: #27ae60;
    --color-error: #e74c3c;
    --color-warning: #f39c12;
    --font-primary: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--color-gray);
}

button {
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
}

input, select, textarea {
    font-family: var(--font-primary);
}

/* ======================== */
/* CONTAINER & LAYOUT */
/* ======================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ======================== */
/* NAVIGATION */
/* ======================== */

.navbar {
    background-color: var(--color-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 0.8rem 20px 0.8rem 4rem;
    max-width: 100%;
    margin: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    align-self: stretch;
    background-color: transparent;
    padding: 0 16px;
    height: 60px;
}

.navbar-brand .logo {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.navbar-brand h1 {
    color: var(--color-primary); 
    margin: 0;
    font-size: 1rem;
    letter-spacing: 0.3px;
    white-space: nowrap;
    font-weight: 500;
}

/* Header info (location) on the right side */
.header-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gray);
    font-size: 0.9rem;
}

.header-info i {
    color: var(--color-secondary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: flex-end;
    align-items: center;
}

.nav-menu a {
    color: var(--color-dark);
    font-weight: 400;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-primary);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--color-dark);
    margin: 4px 0;
    transition: var(--transition);
}

/* ======================== */
/* HERO SECTION */
/* ======================== */

.hero {
    color: var(--color-white);
    padding: 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background-color: #888;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem 4rem 4rem;
    background: transparent;
    z-index: 2;
    position: relative;
    max-width: 720px;
}

.hero-content h2 {
    color: var(--color-white);
    font-size: 2.6rem;
    margin: 0 0 1.2rem 0;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0 0 2rem 0;
    line-height: 1.5;
    max-width: 520px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Ensure hero CTA aligns with left edge of hero content */
.hero .cta-buttons {
    justify-content: flex-start;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.6s cubic-bezier(.2,.9,.2,1);
    will-change: transform, opacity;
}

.reveal.in-view {
    opacity: 1;
    transform: none;
}

.reveal-up {
    transform: translateY(24px);
}

.reveal-left {
    transform: translateX(-24px);
}

.reveal-right {
    transform: translateX(24px);
}

.reveal-zoom {
    transform: scale(0.96);
}

.card-info.in-view,
.card-benefit.in-view,
.pricing-card.in-view {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

/* Background image on right side */
.hero-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/power-plant-construction.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark overlay gradient for left-to-right fade */
.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 50%, transparent 100%);
    z-index: 1;
}

/* Responsive: stack on tablet and mobile */
@media (max-width: 991px) {
    .hero {
        min-height: auto;
    }
    .navbar .container {
        padding-left: 3rem;
    }
    .hero-content {
        padding: 2.5rem 2rem;
        position: relative;
        width: auto;
        transform: none;
    }
    .hero-media {
        position: relative;
        min-height: 350px;
    }
    .hero-content h2 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        grid-template-columns: 1fr auto;
        padding: 0.5rem 15px 0.5rem 2.5rem;
    }
    .header-info {
        display: none;
    }
    .hero-content {
        padding: 2.5rem 1.5rem;
    }
    .hero-content h2 {
        font-size: 2.1rem;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .cta-buttons .btn {
        width: 100%;
    }
}

/* ======================== */
/* BUTTONS */
/* ======================== */

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.btn:hover {
    background-color: #e0e0e0;
    color: var(--color-dark);
    border-color: #d0d0d0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #e0e0e0;
    color: var(--color-dark);
    border-color: #d0d0d0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: #e0e0e0;
    color: var(--color-dark);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

.btn-gray {
    background-color: #e0e0e0;
    color: var(--color-dark);
    border-color: #d0d0d0;
}

.btn-gray:hover {
    background-color: #dcdcdc;
    color: var(--color-dark);
    border-color: #cfcfcf;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* ======================== */
/* SECTIONS */
/* ======================== */

.section-white {
    background-color: var(--color-white);
    padding: 4rem 20px;
}

.section-light-blue {
    background-color: var(--color-light-blue);
    padding: 4rem 20px;
}

.section-light-gray {
    background-color: var(--color-light-gray);
    padding: 4rem 20px;
}

.section-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    padding: 4rem 20px;
    text-align: center;
}

.section-cta h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.section-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
}

.page-header {
    background-color: #f0f0f0;
    color: var(--color-dark);
    padding: 3rem 20px;
    text-align: center;
}

.page-header h1 {
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--color-gray);
    font-size: 1.1rem;
}

/* ======================== */
/* GRID LAYOUTS */
/* ======================== */

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* ======================== */
/* CARDS */
/* ======================== */

.card-info {
    background-color: var(--color-light-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--color-primary);
}

.card-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.card-benefit {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.card-benefit:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

/* ======================== */
/* ACCORDIONS */
/* ======================== */

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.accordion-item {
    border: 1px solid var(--color-border);
    border-radius: 5px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--color-light-gray);
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    color: var(--color-dark);
}

.accordion-header:hover {
    background-color: #e0e0e0;
}

.accordion-header i {
    transition: var(--transition);
    color: var(--color-primary);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 1.5rem;
    background-color: var(--color-white);
    display: none;
}

.accordion-item.active .accordion-content {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======================== */
/* FORMS */
/* ======================== */

.form-wrapper,
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.registration-form,
.contact-form {
    background-color: var(--color-light-gray);
    padding: 2rem;
    border-radius: 8px;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-text {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-top: 0.3rem;
}

.form-divider {
    margin: 2rem 0;
    border: none;
    border-top: 2px solid var(--color-border);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    margin: 0;
}

.file-input {
    position: relative;
    border: 2px dashed var(--color-primary);
    border-radius: 5px;
    padding: 2rem;
    text-align: center;
    background-color: rgba(0, 102, 204, 0.05);
    cursor: pointer;
    transition: var(--transition);
}

.file-input:hover {
    background-color: rgba(0, 102, 204, 0.1);
    border-color: var(--color-primary-dark);
}

.file-input input[type="file"] {
    display: none;
}

.file-input span {
    color: var(--color-primary);
    font-weight: 600;
}

.notice {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    color: #856404;
}

/* ======================== */
/* FOOTER */
/* ======================== */

.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 4rem 20px 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--color-white);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--color-primary);
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.vm-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.06);
    position: relative;
}

.vm-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-primary);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.vm-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: var(--color-dark);
}

.vm-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-light-blue);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.vm-text {
    color: var(--color-gray);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .vm-grid { grid-template-columns: 1fr; }
}

.vm-layout {
    display: grid;
    grid-template-columns: minmax(0, 540px) 1fr;
    gap: 32px;
    align-items: start;
}

.vm-photo {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.vm-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.vm-right { display: flex; flex-direction: column; gap: 24px; }

.vm-piece {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
}

.vm-icon2 {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #eeeeee;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.vm-heading {
    font-size: 2rem;
    letter-spacing: 0.2px;
    color: var(--color-dark);
}

.vm-desc { color: var(--color-gray); line-height: 1.8; }

.vm-line { height: 1px; background: #e6e6e6; border: none; }

@media (max-width: 768px) {
    .vm-layout { grid-template-columns: 1fr; }
    .vm-heading { font-size: 1.6rem; }
}

.profile-block { margin-bottom: 40px; }
.profile-title {
    text-align: center;
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 12px;
    position: relative;
}
.profile-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 4px;
    background: var(--color-primary);
    margin: 10px auto 0;
    border-radius: 2px;
}
.profile-lead { color: var(--color-gray); line-height: 1.8; margin-bottom: 16px; }
.profile-media { border-radius: 12px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
.profile-media img { width: 100%; height: 320px; display: block; object-fit: cover; }

.section-separated {
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    margin: 32px 0;
}
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25D366;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 1100;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

@media (max-width: 480px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
}

/* ======================== */
/* TEXT UTILITIES */
/* ======================== */

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* ======================== */
/* LISTS */
/* ======================== */

.list-check {
    list-style: none;
    padding-left: 0;
}

.list-check li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.list-check li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-success);
}

.list-benefit {
    list-style: none;
    padding-left: 0;
}

.list-benefit li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.list-benefit li::before {
    content: '\f0fe';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

/* ======================== */
/* PRICING */
/* ======================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 102, 204, 0.2);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.8rem;
}

.pricing-header {
    padding: 2rem;
    color: var(--color-white);
    text-align: center;
}

.pricing-header.level-1 {
    background: linear-gradient(135deg, #0066cc, #0052a3);
}

.pricing-header.level-2 {
    background: linear-gradient(135deg, #f39c12, #d68910);
}

.pricing-header.level-3 {
    background: linear-gradient(135deg, #27ae60, #1e8449);
}

.level-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.pricing-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.price {
    text-align: center;
    margin-bottom: 1rem;
}

.price .currency {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 600;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
}

.price-subtitle {
    text-align: center;
    color: var(--color-gray);
    margin-bottom: 1rem;
}

.pricing-divider {
    height: 1px;
    background-color: var(--color-border);
    margin: 1rem 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray);
}

.feature-list i {
    color: var(--color-success);
}

.feature-list .fa-times {
    color: #e0e0e0;
}

.requirement-list {
    list-style: none;
    padding: 0;
}

.requirement-list li {
    padding: 0.3rem 0;
    color: var(--color-gray);
    font-size: 0.95rem;
}

/* ======================== */
/* TABLES */
/* ======================== */

.table-responsive {
    overflow-x: auto;
}

.skk-table,
.full-width {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--color-white);
    margin-bottom: 2rem;
}

.skk-table th,
.full-width th {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.skk-table td,
.full-width td {
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.skk-table tbody tr:hover,
.full-width tbody tr:hover {
    background-color: var(--color-light-gray);
}

.total-row {
    background-color: var(--color-light-blue);
    font-weight: 600;
}

/* ======================== */
/* TIMELINE */
/* ======================== */

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background-color: var(--color-primary);
}

.timeline-item {
    margin-bottom: 2.2rem;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 50%;
    padding-right: 1.5rem;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    margin-right: 0;
    padding-left: 1.5rem;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 6px;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
    z-index: 10;
}

.timeline-content h4 {
    margin-bottom: 0.3rem;
}

.timeline-content {
    background-color: var(--color-light-gray);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.timeline-content p { color: var(--color-gray); }

/* ======================== */
/* LEVELS */
/* ======================== */

.level-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.level-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.level-1 {
    background-color: #0066cc;
}

.level-2 {
    background-color: #f39c12;
}

.level-3 {
    background-color: #27ae60;
}

.level-desc {
    color: var(--color-gray);
    font-size: 0.9rem;
}

/* ======================== */
/* MISC */
/* ======================== */

.highlight-box {
    background-color: var(--color-white);
    border-left: 4px solid var(--color-primary);
    padding: 2rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.success-message {
    text-align: center;
    padding: 2rem;
    background-color: #d4edda;
    border-left: 4px solid var(--color-success);
    border-radius: 5px;
    color: #155724;
}

.success-message i {
    font-size: 3rem;
    color: var(--color-success);
    margin-bottom: 1rem;
}

.detail-section {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.detail-section h3 {
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.detail-section h3:first-child {
    margin-top: 0;
}

.skill-box {
    background-color: var(--color-light-gray);
    padding: 1.5rem;
    border-radius: 5px;
    border-left: 4px solid var(--color-primary);
}

.skill-box h4 {
    color: var(--color-primary);
    margin-bottom: 0.8rem;
}

.skill-box ul {
    list-style: none;
    padding-left: 0;
}

.skill-box li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.skill-box li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

/* ======================== */
/* RESPONSIVE */
/* ======================== */

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--color-white);
        gap: 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--color-border);
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-marker {
        left: 0;
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 50px;
        margin-right: 0;
        text-align: left;
        padding-left: 0.75rem;
        padding-right: 0;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* Accent button for hero like screenshot */
.btn-orange {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.btn-orange:hover {
    background-color: #e0e0e0;
    color: var(--color-dark);
    border-color: #d0d0d0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .hero {
        padding: 3rem 15px;
    }

    .section-white,
    .section-light-blue,
    .section-cta {
        padding: 2rem 15px;
    }

    .grid-2,
    .grid-3,
    .two-column {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }

    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .form-section {
        margin-bottom: 1.5rem;
    }

    .registration-form,
    .contact-form {
        padding: 1.5rem;
    }

    .table-responsive {
        font-size: 0.9rem;
    }

    .skk-table th,
    .skk-table td {
        padding: 0.8rem 0.5rem;
    }
}
