/* ============================================
   HOME PAGE & SECTION IMPROVEMENTS
   ============================================ */

/* ============================================
   HERO SECTION ENHANCEMENTS
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    line-height: 1.2;
    letter-spacing: -1px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: clamp(1.75rem, 7vw, 3rem);
    line-height: 1.2;
    letter-spacing: -1px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ============================================
   ICON BOX IMPROVEMENTS
   ============================================ */

.icon-box:first-of-type {
    padding: 30px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #3e3d6e !important;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.icon-box.jobspec {
    padding: 30px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #73c593 !important;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.icon-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(115, 197, 147, 0.1), transparent);
    transition: left 0.3s ease;
    z-index: 0;
}

.icon-box:hover::before {
    left: 100%;
}

.icon-box i {
    font-size: 42px;
    line-height: 1;
    color: #73c593;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    z-index: 1;
}

.icon-box:hover i {
    transform: scale(1.15) rotateY(360deg);
}

.icon-box h3 {
    font-weight: 700;
    margin: 15px 0 10px 0;
    padding: 0;
    line-height: 1.4;
    font-size: 1.25rem;
    z-index: 1;
}

.icon-box h3 a {
    color: #3e3d6e;
    transition: color 0.3s ease;
}

.icon-box:hover h3 a {
    color: #73c593;
}

.icon-box p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    z-index: 1;
}

.icon-box:hover {
    border: 2px solid #73c593 !important;
    box-shadow: 0 10px 30px rgba(115, 197, 147, 0.15);
    transform: translateY(-8px);
}

.icon-box.jobspec:hover {
    border: 2px solid #3e3d6e !important;
    box-shadow: 0 10px 30px rgba(115, 197, 147, 0.15);
    transform: translateY(-8px);
}

.bi-person-fill-up::before {
    color: #3e3d6e !important;
}
/* ============================================
   ABOUT SECTION IMPROVEMENTS
   ============================================ */
.about .content h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.3;
}

.about .content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about .content ul li {
    padding: 12px 0 12px 40px;
    position: relative;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
}

.about .content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    color: #73c593;
    font-weight: bold;
}

/* ============================================
   FEATURES SECTION IMPROVEMENTS
   ============================================ */

.features-item {
    padding: 28px 24px;
    border-radius: 12px;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.features-item:hover {
    border-color: #73c593;
    box-shadow: 0 10px 35px rgba(115, 197, 147, 0.12);
    transform: translateY(-6px);
}

.features-item i {
    font-size: 48px;
    color: #73c593;
    margin-right: 20px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.features-item:hover i {
    transform: scale(1.15);
}

.features-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #3e3d6e;
}

.features-item p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   SECTION TITLE IMPROVEMENTS
   ============================================ */

.section-title h2 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #73c593;
    margin: 0 0 15px 0;
}

.section-title p {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    color: #3e3d6e;
    margin: 0;
    line-height: 1.3;
}

/* ============================================
   SECTION SPACING IMPROVEMENTS
   ============================================ */

section {
    padding: 80px 0;
}

section.dark-background {
    background: linear-gradient(135deg, #060606 0%, #1a1a1a 100%);
}

.section .container {
    max-width: 1200px;
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
}

/* ============================================
   TEXT IMPROVEMENTS
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #3e3d6e;
}

h1 {
    font-size: clamp(1.75rem, 5vw, 3rem);
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 15px;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 16px;
}

strong {
    font-weight: 700;
    color: #3e3d6e;
}

em {
    font-style: italic;
    color: #73c593;
}

/* ============================================
   LINK & ANCHOR IMPROVEMENTS
   ============================================ */

a {
    color: #73c593;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

a:hover {
    color: #62b489;
    text-decoration: underline;
}

a.text-blue {
    color: #3e3d6e;
}

a.text-blue:hover {
    color: #73c593;
}

a.text-green {
    color: #73c593;
}

a.text-green:hover {
    color: #62b489;
}

/* ============================================
   FOOTER IMPROVEMENTS
   ============================================ */

.footer {
    background-color: #1a1a1a;
    color: #e5e7eb;
}

.footer h4 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer p {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer a {
    color: #73c593;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #62b489;
    text-decoration: underline;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.copyright {
    border-top: 1px solid #333333;
    padding-top: 20px;
    color: #9ca3af;
}

/* ============================================
   CARD STYLING
   ============================================ */

.card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    border-color: #73c593;
    box-shadow: 0 8px 24px rgba(115, 197, 147, 0.12);
    transform: translateY(-4px);
}

.card-header {
    background-color: #f5f7fa;
    border-bottom: 2px solid #e5e7eb;
    padding: 20px;
}

.card-body {
    padding: 24px;
}

.card-footer {
    background-color: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 16px 24px;
}

/* ============================================
   BADGE & TAG STYLING
   ============================================ */

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.badge-primary {
    background-color: rgba(62, 61, 110, 0.15);
    color: #3e3d6e;
}

.badge-success {
    background-color: rgba(115, 197, 147, 0.15);
    color: #27663a;
}

.badge-info {
    background-color: rgba(59, 130, 246, 0.15);
    color: #1e40af;
}

.badge-warning {
    background-color: rgba(245, 158, 11, 0.15);
    color: #92400e;
}

.badge-danger {
    background-color: rgba(239, 68, 68, 0.15);
    color: #7f1d1d;
}

/* ============================================
   BREADCRUMB IMPROVEMENTS
   ============================================ */

.breadcrumb {
    background-color: transparent;
    padding: 12px 0;
    margin: 0;
}

.breadcrumb-item {
    color: #6b7280;
    font-size: 0.95rem;
}

.breadcrumb-item.active {
    color: #3e3d6e;
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #d1d5db;
    margin: 0 8px;
}

/* ============================================
   DIVIDER IMPROVEMENTS
   ============================================ */

hr {
    border: none;
    border-top: 2px solid #e5e7eb;
    margin: 40px 0;
}

hr.sm {
    margin: 24px 0;
}

hr.lg {
    margin: 60px 0;
}

hr.accent {
    border-top-color: #73c593;
}

/* ============================================
   QUOTE STYLING
   ============================================ */

blockquote {
    border-left: 4px solid #73c593;
    padding: 20px 24px;
    margin: 24px 0;
    background-color: #f5f7fa;
    border-radius: 8px;
    font-style: italic;
    color: #3e3d6e;
}

blockquote p {
    margin: 0;
}

blockquote footer {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 12px;
}

/* ============================================
   LIST IMPROVEMENTS
   ============================================ */

ul, ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

ul li, ol li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #4b5563;
}

ul.list-unstyled {
    padding: 0;
}

ul.list-unstyled li {
    padding: 8px 0;
}

/* ============================================
   TRANSITION UTILITIES
   ============================================ */

.transition-smooth {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-fast {
    transition: all 0.15s ease;
}

.transition-slow {
    transition: all 0.5s ease;
}

/* ============================================
   OPACITY & VISIBILITY UTILITIES
   ============================================ */

.fade-in {
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-in-up {
    animation: slideInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SHADOW UTILITIES
   ============================================ */

.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.shadow-md {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.shadow-lg {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.shadow-xl {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ============================================
   MOBILE MENU IMPROVEMENTS
   ============================================ */

.mobile-nav-toggle {
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 28px;
    line-height: 0;
    color: #3e3d6e;
}

.mobile-nav-toggle:hover {
    color: #73c593;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
    h1 {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }

    h2 {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .icon-box {
        padding: 24px 16px;
    }

    .features-item {
        padding: 20px 16px;
    }

    section {
        padding: 40px 0;
    }

    .footer-links ul li {
        margin-bottom: 8px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .no-print {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    a {
        text-decoration: underline;
    }
}
