/* Color Palette - Matching Easy Mart Logo */
:root {
    --primary-color: #F7A81B; /* Bright yellow/orange from Easy */
    --primary-hover: #e09716;
    --dark-color: #2D3436; /* Dark slate gray from Mart */
    --darker-color: #1e2426;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1, h2, h3, h4, h5 {
    color: var(--dark-color);
    font-weight: 700;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    color: var(--dark-color);
    text-transform: uppercase;
}

.section-title span {
    color: var(--primary-color);
}

.section-title.left {
    text-align: left;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Setup based on "Easy Mart" where Easy is yellow, Mart is Dark */
.logo {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 4px;
}
.logo-footer {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.logo-easy {
    color: var(--primary-color);
}

.logo-mart {
    color: var(--dark-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    color: var(--dark-color);
    transition: var(--transition);
    position: relative;
    font-size: 1.05rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
    border-radius: 5px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--darker-color) 0%, var(--dark-color) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* A subtle pattern overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(247, 168, 27, 0.15) 0%, transparent 40%),
                      radial-gradient(circle at 90% 80%, rgba(247, 168, 27, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 25px;
}

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

.hero-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Hero Form */
.hero-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    position: relative;
}

.hero-form-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: 15px;
    left: 15px;
    border: 3px dashed var(--primary-color);
    border-radius: 20px;
    z-index: -1;
}

.application-form h3 {
    text-align: center;
    font-size: 1.9rem;
    margin-bottom: 5px;
    color: var(--dark-color);
    text-transform: uppercase;
}

.form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group .icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: var(--transition);
    background-color: var(--light-bg);
    appearance: none;
    font-weight: 500;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 18px top 50%;
    background-size: 12px auto;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(247, 168, 27, 0.1);
}

.form-group input:focus + .icon,
.form-group select:focus + .icon {
    color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(247, 168, 27, 0.3);
}

/* Animations Setup */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Jobs Section */
.jobs {
    padding: 120px 0;
    background-color: var(--white);
}

.jobs-list {
    display: grid;
    /* Simulate a 4-item carousel row on large screens */
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.job-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 35px 25px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    background: var(--white);
    border-color: var(--primary-color);
}

.job-card:hover::before {
    transform: scaleX(1);
}

.job-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(247, 168, 27, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: var(--transition);
}

.job-card:hover .job-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.job-card h3 {
    font-size: 1.35rem;
    margin-bottom: 20px;
    min-height: 2.7rem;
}

.job-jd {
    list-style: none;
    margin-bottom: 30px;
    color: var(--text-light);
    flex-grow: 1;
}

.job-jd li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.job-jd li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.btn-outline {
    display: block;
    text-align: center;
    padding: 12px 25px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: rgba(247, 168, 27, 0.03);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--primary-color);
    color: var(--white);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 10px solid var(--white);
    box-shadow: 0 10px 25px rgba(247, 168, 27, 0.3);
}

.experience-badge .number {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    background: var(--white);
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--primary-color);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item .stat-number {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

/* People / Testimonials */
.people {
    padding: 120px 0;
    background-color: var(--white);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.testimonial-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.quote-icon {
    position: absolute;
    top: -25px;
    right: 40px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(247, 168, 27, 0.3);
}

.review-text {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer .avatar {
    font-size: 3.5rem;
    color: var(--primary-color);
}

.reviewer h4 {
    margin-bottom: 2px;
    font-size: 1.1rem;
}

.reviewer p {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Locations Section */
.locations {
    padding: 120px 0;
    background: linear-gradient(0deg, rgba(247, 168, 27, 0.05) 0%, rgba(255,255,255,1) 100%);
}

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

.location-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.location-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.location-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.location-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.location-card p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Footer Section */
.footer {
    background-color: var(--darker-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 25px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-info p {
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-contact h3 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

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

.footer-contact li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.05rem;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 5px;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .jobs-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-container, .about-container, .footer-container {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-text {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-text p {
        margin: 0 auto 30px;
    }
    
    .hero-benefits {
        justify-content: center;
    }
    
    .about-image {
        margin-bottom: 40px;
        margin-right: 30px;
    }
    
    .experience-badge {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .jobs-list {
        grid-template-columns: 1fr;
    }
}

/* Custom Dashboard Tabbing */
.tab-content {
    display: none;
    animation: fadeInTab 0.4s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Source Badges */
.source-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}
.source-badge.lp { background: #e3f2fd; color: #1976d2; border: 1px solid #bbdefb; }
.source-badge.fb { background: #e8eaf6; color: #3f51b5; border: 1px solid #c5cae9; }
.source-badge.hr { background: #fce4ec; color: #e91e63; border: 1px solid #f8bbd0; }

/* Management Grid */
.management-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.social-account-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
}
.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin-right: 15px;
}
.social-icon.fb { background: #1877F2; }
.social-icon.tt { background: #000000; }
.social-info { flex-grow: 1; }
.social-info h4 { margin-bottom: 2px; font-size: 0.95rem; }
.social-info p { font-size: 0.8rem; margin: 0; }

.btn-sm {
    padding: 5px 12px;
    background: #f1f3f4;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-sm:hover {
    background: #e2e6ea;
}

.content-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
    position: relative;
    border: 1px solid var(--border-color);
}
.content-item h5 { margin-bottom: 5px; font-size: 0.95rem; }
.content-item p { font-size: 0.8rem; color: var(--text-light); margin: 0; }

.toggle-switch {
    width: 40px;
    height: 20px;
    background: #ccc;
    border-radius: 20px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.toggle-switch.active { background: #2ecc71; }
.toggle-switch::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: 0.3s;
}
.toggle-switch.active::after { left: 22px; }

@media (max-width: 1024px) {
    .management-grid {
        grid-template-columns: 1fr;
    }
}
