:root {
    --primary: #2E3B7F;
    --secondary: #1a2347;
    --accent: #FF8C42;
    --accent-light: #FFB366;
    --text-primary: #FFFFFF;
    --text-secondary: #B8C5D6;
    --background: #0f1419;
    --card-bg: rgba(46, 59, 127, 0.15);
    --border: rgba(255, 140, 66, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}





html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.bg-gradient {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(46, 59, 127, 0.2) 0%, transparent 50%);
    z-index: -1;
}

/* ============================================
   NAVIGATION
============================================ */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--accent);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    font-family: 'Arial', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Desktop Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.85rem;
    border-radius: 5px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.07);
}

/* Desktop CTA Button */
.cta-button {
    padding: 0.65rem 1.5rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.cta-button:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
}

/* Desktop CTA - visible on desktop */
.nav-desktop-cta {
    display: inline-block;
}

/* Mobile CTA inside menu - hidden on desktop */
.nav-mobile-cta {
    display: none;
}

/* Hamburger - hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 9999;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Overlay - mobile only */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 997;
}

.nav-overlay.open {
    display: block;
}

/* ============================================
   HERO SECTION
============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem 2rem;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-text h1 .accent {
    color: var(--accent);
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 0.9rem 2rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 0.9rem 2rem;
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--accent);
    color: white;
}

.hero-visual {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.code-window {
    background: rgba(46, 59, 127, 0.25);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    width: 100%;
}

.code-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dot:nth-child(1) { background: #FF5F56; }
.code-dot:nth-child(2) { background: #FFBD2E; }
.code-dot:nth-child(3) { background: #27C93F; }

.code-content {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: #FFB366;
    line-height: 1.6;
}

.code-line {
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

.code-line:nth-child(1) { animation-delay: 0.2s; }
.code-line:nth-child(2) { animation-delay: 0.4s; }
.code-line:nth-child(3) { animation-delay: 0.6s; }
.code-line:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeIn {
    to { opacity: 1; }
}

/* ============================================
   SECTIONS
============================================ */

section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SERVICES
============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: rgba(46, 59, 127, 0.15);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.2s ease;
}


.service-image {
    width: 100%;      /* make it responsive */
    max-width: 300px; /* set a reasonable max width */
    height: auto;     /* maintain aspect ratio */
    object-fit: cover; /* optional: crops if needed */
    border-radius: 8px; /* optional: for nicer look */
}


/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.services-grid .service-card {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background: #f9f9f9; /* adjust as needed */
    transition: transform 0.3s;
}

.services-grid .service-card:hover {
    transform: translateY(-5px);
}

.services-grid .service-card .service-image {
    width: 60px;          /* same as old emoji */
    height: 60px;
    object-fit: cover;    /* maintain aspect ratio, crop if needed */
    border-radius: 50%;   /* circular like icon */
    display: block;
    margin: 0 auto 10px;  /* center and spacing below image */
}

.services-grid .service-card h3 {
    font-size: 1.2rem;
    margin: 10px 0 5px;
}

.services-grid .service-card p {
    font-size: 0.95rem;
    color: #555;
}


.service-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    margin-bottom: 10px;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    background: rgba(46, 59, 127, 0.25);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   ABOUT SECTION
============================================ */

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.stat-item {
    background: rgba(46, 59, 127, 0.2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   TESTIMONIALS CAROUSEL
============================================ */

.testimonials-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 70px;
}

.testimonials-container {
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    background: rgba(46, 59, 127, 0.25);
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 2.5rem;
    box-sizing: border-box;
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 2rem;
    min-height: 140px;
    font-weight: 400;
    position: relative;
    z-index: 1;
    text-align: justify;
    text-justify: inter-word;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.35rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Testimonial Arrows */
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.testimonial-arrow:hover:not(:disabled) {
    background: var(--accent-light);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-arrow.prev { left: 0; }
.testimonial-arrow.next { right: 0; }

.testimonial-arrow:disabled {
    background: rgba(255, 140, 66, 0.4);
    cursor: not-allowed;
    opacity: 0.5;
}

/* Testimonial Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 140, 66, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.testimonial-dot:hover {
    background: rgba(255, 140, 66, 0.6);
}

.testimonial-dot.active {
    background: var(--accent);
    width: 35px;
    border-radius: 6px;
}

/* ============================================
   CONTACT SECTION
============================================ */

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.contact-info p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(46, 59, 127, 0.3);
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-form {
    background: rgba(46, 59, 127, 0.15);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: 5px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-group select option {
    background: #0f1419;
    color: var(--text-primary);
}

.form-group small {
    display: block;
    margin-top: 0.4rem;
    color: var(--text-secondary);
    font-size: 0.82rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.submit-btn {
    width: 100%;
    padding: 0.9rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.submit-btn:hover {
    background: var(--accent-light);
}

/* ============================================
   FOOTER
============================================ */

footer {
    background: var(--secondary);
    border-top: 2px solid var(--accent);
    padding: 3rem 2rem 1.5rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
}

.footer-brand h3 {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.footer-links h4 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.6rem;
}

.footer-links ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 140, 66, 0.2);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   ALERTS & ERRORS
============================================ */

.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    font-weight: 500;
}

.alert-success {
    background: rgba(46, 59, 127, 0.2);
    border: 1px solid var(--accent);
    color: var(--accent-light);
}

.alert-error {
    background: rgba(244, 67, 54, 0.15);
    border: 1px solid #f44336;
    color: #ff6b6b;
}

.error {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* ============================================
   CAREER BADGES
============================================ */

.career-badge {
    padding: 0.45rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    display: inline-block;
}

.career-badge.open {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid #4caf50;
}

.career-badge.closed {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid #f44336;
}

/* ============================================
   CAREERS PAGE
============================================ */
/* Tablet */
@media (max-width: 1024px) {
    .careers-filter .filter-row {
        flex-direction: column;
        gap: 1rem;
    }

    .search-input,
    .filter-select {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .careers-filter .filter-row {
        flex-direction: column;
    }

    .search-input,
    .filter-select {
        width: 100%;
    }
}

.careers-filter {
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.filter-form {
    background: rgba(46, 59, 127, 0.15);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem 2rem;
}

.filter-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-end;
}

.search-input,
.filter-select {
    flex: 1;
    min-width: 180px;
    padding: 0.85rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: 5px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.search-input:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--accent);
}

.filter-select option {
    background: #0f1419;
    color: var(--text-primary);
}

.careers-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}


.career-card {
    background: rgba(46, 59, 127, 0.15);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.career-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Blog Placeholder */
.blog-image[style*="blog-placeholder"] {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image[style*="blog-placeholder"]::after {
    content: "📝";
    font-size: 4rem;
}
.career-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1.5rem;
}

.career-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.career-meta {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-secondary);
    align-items: center;
}

.career-category {
    background: rgba(255, 140, 66, 0.2);
    color: var(--accent);
    padding: 0.2rem 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.85rem;
}

.career-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ============================================
   CAREER DETAIL PAGE
============================================ */

.career-detail-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.back-link {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    margin-bottom: 2rem;
    font-weight: 500;
    transition: transform 0.2s;
}

.back-link:hover {
    transform: translateX(-5px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border);
}

.job-header h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.job-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-section {
    background: rgba(46, 59, 127, 0.15);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem;
}

.content-section h2 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent);
}

.content-section p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.job-list {
    list-style: none;
    padding: 0;
}

.job-list li {
    color: var(--text-secondary);
    line-height: 1.8;
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.job-list li:last-child {
    border-bottom: none;
}

.job-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.apply-section {
    background: rgba(255, 140, 66, 0.1);
    border: 2px solid var(--accent);
    border-radius: 10px;
    padding: 2.5rem;
    text-align: center;
}

.apply-section h2 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.apply-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.closed-notice h2 {
    color: #f44336;
    margin-bottom: 1rem;
}

/* Application Form */
.application-form {
    text-align: left;
    margin-top: 2rem;
}

.form-row-app {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group-app {
    margin-bottom: 1rem;
}

.form-group-app label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group-app input,
.form-group-app textarea {
    width: 100%;
    padding: 0.85rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: 5px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.form-group-app input[type="file"] {
    padding: 0.6rem 0.85rem;
    cursor: pointer;
}

.form-group-app input:focus,
.form-group-app textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group-app textarea {
    resize: vertical;
    min-height: 120px;
}

.error-app {
    display: block;
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

/* ============================================
   MAP SECTION
============================================ */

.map-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.map-section h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    text-align: center;
}

.map-section iframe {
    width: 100%;
    height: 420px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

/* ============================================
   STATUS BADGES (Admin)
============================================ */

.status-badge {
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    display: inline-block;
}

.status-active {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid #4caf50;
}

.status-inactive {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid #f44336;
}

/* ============================================
   RESPONSIVE - TABLET (1024px)
============================================ */

@media (max-width: 1024px) {

    .hero-content,
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-text h1 {
        font-size: 2.75rem;
    }

    .hero-visual {
        height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (768px)
============================================ */

@media (max-width: 768px) {

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

    /* Hide desktop CTA */
    .nav-desktop-cta {
        display: none;
    }

    /* Show mobile CTA inside menu */
    .nav-mobile-cta {
        display: block;
        width: 100%;
        padding: 1.25rem 1.25rem 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 0.5rem;
    }

    .nav-mobile-cta a {
        display: block !important;
        text-align: center !important;
        background: var(--accent) !important;
        color: white !important;
        padding: 0.9rem 1.5rem !important;
        border-radius: 6px !important;
        font-weight: 600 !important;
        font-size: 1rem !important;
        text-decoration: none !important;
        border-bottom: none !important;
        transition: background 0.2s ease !important;
    }

    .nav-mobile-cta a:hover {
        background: var(--accent-light) !important;
        padding-left: 1.5rem !important;
    }

    /* Mobile slide-in menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 80vw);
        height: 100vh;
        background: #0a0f14;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        padding-top: 70px;
        z-index: 998;
        transition: right 0.3s ease;
        border-left: 2px solid var(--accent);
        overflow-y: auto;
        display: flex !important;
        list-style: none;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 1rem 1.25rem;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.85);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 0;
        transition: all 0.2s ease;
        text-decoration: none;
        background: none;
    }

    .nav-links a:hover {
        color: var(--accent);
        background: rgba(255, 140, 66, 0.08);
        padding-left: 1.75rem;
    }

    /* Hero */
    .hero {
        padding: 5rem 1.5rem 2rem;
    }

    .hero-text h1 {
        font-size: 2.25rem;
    }

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

    .hero-visual {
        display: none;
    }

    /* Sections */
    .section-header h2,
    .about-text h2,
    .contact-info h2 {
        font-size: 2rem;
    }

    /* Grids */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Testimonials */
    .testimonials-wrapper {
        padding: 0 50px;
    }

    .testimonial-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    .testimonial-text {
        font-size: 1rem;
        min-height: auto;
    }

    /* Careers */
    .career-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .career-meta {
        gap: 0.75rem;
    }

    /* Job Detail */
    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-header h1 {
        font-size: 2rem;
    }

    .job-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Map */
    .map-section iframe {
        height: 320px;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (480px)
============================================ */

@media (max-width: 480px) {

    nav {
        padding: 0.85rem 1rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .nav-container {
        padding: 0.85rem 1rem;
    }

    /* Hero */
    .hero {
        padding: 4.5rem 1rem 2rem;
    }

    .hero-text h1 {
        font-size: 1.85rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    /* Sections */
    section {
        padding: 3rem 1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Services */
    .service-card {
        padding: 1.5rem;
    }

    /* Testimonials */
    .testimonials-wrapper {
        padding: 0 42px;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 2rem 1rem 1rem;
    }

    /* Contact */
    .contact-form {
        padding: 1.5rem 1rem;
    }

    /* Careers filter */
    .filter-row {
        flex-direction: column;
    }

    .search-input,
    .filter-select {
        min-width: 100%;
    }

    /* Application form */
    .form-row-app {
        grid-template-columns: 1fr;
    }

    /* Job detail */
    .content-section {
        padding: 1.5rem 1rem;
    }

    .apply-section {
        padding: 1.5rem 1rem;
    }

    .career-detail-container {
        padding: 0 1rem;
    }

    /* Map */
    .map-section {
        padding: 0 1rem 3rem;
    }

    .map-section iframe {
        height: 260px;
    }

    /* Form rows */
    .form-row {
        grid-template-columns: 1fr;
    }
}