/*
--- STYLE.CSS (FINALIZED V3) ---
*/

/* ======== 1. GLOBAL STYLES & CSS VARIABLES ======== */
:root {
    --primary-color: #ffc107;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --gray-color: #f7f7f7;
    --text-color: #333333;

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Georgia', serif;

    --container-width: 1140px;
    --border-radius: 12px;
    --transition-speed: 0.4s ease;
}

/* Basic Reset & Font Setup */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--light-color);
    color: var(--text-color);
    line-height: 1.7;
    font-size: 16px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ======== 2. UTILITY & REUSABLE COMPONENTS ======== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all var(--transition-speed);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    border-color: var(--light-color);
}

.btn-secondary:hover {
    background-color: var(--light-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

.section-title {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 60px auto;
    color: #666;
}

.section-header.text-center {
    text-align: center;
}

.light-text {
    color: var(--light-color) !important;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======== 3. BEE ANIMATION ======== */
@keyframes bee-buzz {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(1px, -1px) scale(1.05);
    }
    50% {
        transform: translate(-1px, 1px) scale(1);
    }
    75% {
        transform: translate(1px, 1px) scale(1.05);
    }
}

.bee-icon {
    display: inline-block;
    animation: bee-buzz 3s infinite ease-in-out;
    vertical-align: middle;
}


/* ======== 4. HIRING BAR & HEADER ======== */
.hiring-bar {
    background-color: var(--dark-color);
    color: var(--light-color);
    text-align: center;
    padding: 10px 20px;
    font-weight: 500;
    position: sticky; /* CHANGED */
    top: 0; /* ADDED */
    z-index: 1000;
    width: 100%;
}

.hiring-bar a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 700;
}

.hero-section {
    color: var(--light-color);
    min-height: 100vh; /* UPDATED to ensure full height below sticky bar */
    display: flex;
    flex-direction: column;
    position: relative;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 25px 20px;
    position: relative;
    z-index: 100;
}

.logo a {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--light-color);
    text-decoration: none;
}

.hero-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.main-headline {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--light-color);
    margin-bottom: 20px;
    max-width: 900px;
}

.sub-headline {
    font-size: 1.3rem;
    max-width: 600px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* ======== 5. PARALLAX EFFECT ======== */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

.parallax > * {
    position: relative;
    z-index: 1;
}

#services.parallax, #testimonials.parallax {
    padding: 120px 0;
}

/* ======== 6. PROBLEM & SOLUTION ======== */
.problem-solution-section {
    padding: 120px 0;
    background-color: var(--light-color);
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.problem-column img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.solution-column h3 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.solution-column ul {
    list-style: none;
    margin-top: 20px;
    margin-bottom: 30px;
}

.solution-column ul li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.icon-check::before {
    content: '✔';
    color: var(--primary-color);
    margin-right: 15px;
    font-weight: bold;
}


/* ======== 7. SERVICES ======== */
.services-section .section-header {
    margin-bottom: 60px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform var(--transition-speed);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 25px 30px 30px;
    flex-grow: 1;
}

.card-content h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

/* ======== 8. PROCESS ======== */
.process-section {
    padding: 120px 0;
    background-color: var(--gray-color);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 25px auto;
    border: 3px solid var(--light-color);
    box-shadow: 0 0 0 3px var(--primary-color);
}

.process-step h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}


/* ======== 9. TESTIMONIALS ======== */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    border: 4px solid var(--primary-color);
}

.testimonial-card blockquote {
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    color: #444;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 700;
}
.testimonial-card cite span {
    display: block;
    font-weight: 400;
    color: #666;
    margin-top: 5px;
}


/* ======== 10. CONTACT ======== */
.contact-section {
    padding: 120px 0;
    background-color: var(--gray-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    background: var(--light-color);
    padding: 60px;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.contact-info h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 0.9rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-speed);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* --- Form Status Messages --- */
#form-messages {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 700;
    border: 1px solid transparent;
    display: none; /* Hidden by default */
}

#form-messages.success, #form-messages.error, #form-messages.notice {
    display: block; /* Becomes visible when a class is added */
}

#form-messages.success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

#form-messages.error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

#form-messages.notice {
    background-color: #e2e3e5;
    color: #383d41;
    border-color: #d6d8db;
}


/* ======== 11. SECTION NAVIGATION BUTTON ======== */
.section-nav-button {
    text-align: center;
    margin-top: 60px;
}

/* ======== 12. FOOTER ======== */
.main-footer {
    padding: 40px 20px;
    background-color: var(--dark-color);
    color: var(--light-color);
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: #aaa;
}


/* ======== 13. RESPONSIVE MEDIA QUERIES ======== */
@media (max-width: 992px) {
    .section-title { font-size: 2.5rem; }
    .main-headline { font-size: 3.5rem; }
    .two-column-layout, .testimonial-grid, .contact-wrapper { grid-template-columns: 1fr; }
    .contact-wrapper { gap: 40px; }
    .parallax { background-attachment: scroll; }
}

@media (max-w: 768px) {
    .main-headline { font-size: 2.8rem; }
    .process-timeline { grid-template-columns: 1fr; gap: 50px; }
    .contact-wrapper { padding: 40px; }
}

@media (max-w: 576px) {
    body { font-size: 15px; }
    .main-headline { font-size: 2.2rem; }
    .btn { width: 100%; text-align: center; }
    .main-nav .btn { width: auto; }
}