/* ================================   Indian Hive - Careers Page CSS   ================================ *//* === CSS Variables === */:root {    --saffron: #FF9933;    --deep-orange: #E85D04;    --turmeric: #FBBF24;    --midnight: #1A1A2E;    --cream: #FFF8F0;    --terracotta: #D84315;    --warm-white: #FFFBF5;    --font-display: 'Playfair Display', serif;    --font-body: 'Montserrat', sans-serif;    --section-padding: 6rem 5%;    --container-max: 1400px;    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);}/* === Reset & Base === */* { margin: 0; padding: 0; box-sizing: border-box; }html { scroll-behavior: smooth; }body {    font-family: var(--font-body);    background: var(--warm-white);    color: var(--midnight);    line-height: 1.6;    overflow-x: hidden;}img { max-width: 100%; display: block; }a { text-decoration: none; color: inherit; }/* === Utility === */.container {    max-width: var(--container-max);    margin: 0 auto;    padding: 0 5%;}.section-header { margin-bottom: 3rem; }.section-header.center { text-align: center; }.section-label {    display: inline-block;    font-size: 0.875rem;    font-weight: 600;    text-transform: uppercase;    letter-spacing: 2px;    color: var(--saffron);    margin-bottom: 1rem;}.section-title {    font-family: var(--font-display);    font-size: clamp(2rem, 5vw, 3.5rem);    font-weight: 700;    line-height: 1.2;    color: var(--midnight);}/* === Navigation === */.navbar {    position: fixed;    top: 0;    width: 100%;    background: rgba(255, 255, 255, 0.98);    backdrop-filter: blur(10px);    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);    z-index: 1000;    transition: var(--transition-smooth);}.nav-container {    max-width: var(--container-max);    margin: 0 auto;    padding: 1.25rem 5%;    display: flex;    justify-content: space-between;    align-items: center;}.logo-text {    font-family: var(--font-display);    font-size: 1.75rem;    font-weight: 700;    color: var(--deep-orange);    letter-spacing: -0.5px;}.logo {    display: flex;    align-items: center;    gap: 0.6rem;}/* Logo image — adjust height to taste (40px sits neatly in the navbar) */.logo-img {    height: 40px;    width: auto;    display: block;    object-fit: contain;}.nav-menu {    display: flex;    gap: 2.5rem;    list-style: none;    align-items: center;}.nav-menu a {    font-size: 0.95rem;    font-weight: 500;    color: var(--midnight);    position: relative;    transition: var(--transition-smooth);}.nav-menu a::after {    content: '';    position: absolute;    bottom: -5px; left: 0;    width: 0; height: 2px;    background: var(--saffron);    transition: width 0.3s ease;}.nav-menu a:hover,.nav-menu a.active { color: var(--deep-orange); }.nav-menu a:hover::after,.nav-menu a.active::after { width: 100%; }.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }.hamburger span {    width: 28px; height: 3px;    background: var(--midnight);    transition: var(--transition-smooth);    border-radius: 2px;}/* === Page Hero Header (Clean Straight Version) === */.page-hero {    padding: 10rem 5% 4rem;    background: linear-gradient(135deg, #FF9933 0%, #E85D04 100%);    text-align: center;    color: white;    position: relative;    overflow: hidden;}/* Soft background glow */.page-hero::before {    content: '';    position: absolute;    top: -50%;    left: -10%;    width: 500px;    height: 500px;    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent);    border-radius: 50%;}/* Content wrapper */.page-hero-content {    position: relative;    z-index: 1;    max-width: 800px;    margin: auto;}/* Title */.page-hero h1 {    font-family: var(--font-display);    font-size: clamp(2.5rem, 6vw, 4.5rem);    font-weight: 700;    margin-bottom: 1rem;}/* Subtitle */.page-hero p {    font-size: 1.25rem;    opacity: 0.95;    line-height: 1.8;    font-weight: 300;}/* === Careers Intro === */.careers-intro {    padding: var(--section-padding);    background: var(--cream);}.intro-text {    max-width: 820px;    margin: 0 auto 4rem;    font-size: 1.1rem;    color: #555;    line-height: 1.9;    text-align: center;}.perks-grid {    display: grid;    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));    gap: 2rem;}.perk-card {    background: white;    padding: 2.25rem;    border-radius: 20px;    text-align: center;    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);    opacity: 0;    transform: translateY(30px);    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;}.perk-card.visible { opacity: 1; transform: translateY(0); }.perk-card:hover {    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);    transform: translateY(-6px) !important;}.perk-icon {    width: 64px; height: 64px;    background: linear-gradient(135deg, var(--saffron), var(--deep-orange));    border-radius: 50%;    display: flex;    align-items: center;    justify-content: center;    margin: 0 auto 1.25rem;}.perk-icon svg { width: 28px; height: 28px; stroke: white; }.perk-card h3 {    font-family: var(--font-display);    font-size: 1.35rem;    margin-bottom: 0.6rem;    color: var(--midnight);}.perk-card p { color: #666; font-size: 0.95rem; line-height: 1.7; }/* === Apply Section === */.apply-section {    padding: var(--section-padding);    background: linear-gradient(135deg, var(--terracotta), var(--deep-orange));    position: relative;    overflow: hidden;}.apply-section::before {    content: '';    position: absolute;    bottom: -30%; right: -10%;    width: 600px; height: 600px;    background: radial-gradient(circle, rgba(255, 255, 255, 0.07), transparent);    border-radius: 50%;    pointer-events: none;}.apply-inner {    position: relative;    z-index: 1;    display: grid;    grid-template-columns: 1fr 1.3fr;    gap: 5rem;    align-items: start;}.apply-text .section-label { color: rgba(255, 255, 255, 0.8); }.apply-text h2 {    font-family: var(--font-display);    font-size: clamp(2rem, 4vw, 3rem);    color: white;    margin-bottom: 1rem;}.apply-text > p {    color: rgba(255, 255, 255, 0.85);    font-size: 1.05rem;    line-height: 1.8;    margin-bottom: 2.5rem;}.apply-contact { display: flex; flex-direction: column; gap: 1rem; }.apply-contact-item {    display: flex;    align-items: center;    gap: 1rem;    color: rgba(255, 255, 255, 0.9);    font-size: 0.97rem;}.apply-contact-item svg { width: 20px; height: 20px; flex-shrink: 0; }/* === Application Form === */.apply-form-wrap {    background: rgba(255, 255, 255, 0.12);    backdrop-filter: blur(10px);    border-radius: 24px;    padding: 3rem;    border: 1px solid rgba(255, 255, 255, 0.2);}.form-group { margin-bottom: 1.25rem; }.form-group input,.form-group textarea {    width: 100%;    padding: 1rem 1.25rem;    background: rgba(255, 255, 255, 0.15);    border: 1px solid rgba(255, 255, 255, 0.3);    border-radius: 12px;    color: white;    font-family: var(--font-body);    font-size: 0.95rem;    transition: var(--transition-smooth);    outline: none;}.form-group input::placeholder,.form-group textarea::placeholder { color: rgba(255, 255, 255, 0.6); }.form-group input:focus,.form-group textarea:focus {    border-color: rgba(255, 255, 255, 0.7);    background: rgba(255, 255, 255, 0.2);}.form-group textarea { resize: vertical; min-height: 130px; }.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }.form-error {    color: #FFD700;    font-size: 0.9rem;    margin-bottom: 1rem;    min-height: 1.2rem;}.btn-submit {    width: 100%;    padding: 1.1rem;    background: white;    color: var(--deep-orange);    border: none;    border-radius: 50px;    font-weight: 700;    font-size: 1.05rem;    cursor: pointer;    font-family: var(--font-body);    transition: var(--transition-smooth);}.btn-submit:hover {    transform: translateY(-3px);    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);}.form-success {    display: none;    text-align: center;    padding: 2.5rem 1rem;    color: white;}.form-success .checkmark {    width: 70px; height: 70px;    background: rgba(255, 255, 255, 0.2);    border-radius: 50%;    display: flex; align-items: center; justify-content: center;    margin: 0 auto 1.25rem;    font-size: 2rem;}.form-success h4 {    font-family: var(--font-display);    font-size: 1.75rem;    margin-bottom: 0.5rem;}.form-success p { color: rgba(255, 255, 255, 0.85); }/* === Footer === */.footer {    background: var(--midnight);    color: white;    padding: 4rem 5% 2rem;}.footer-grid {    display: grid;    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));    gap: 3rem;    margin-bottom: 3rem;}.footer-col h3 { font-family: var(--font-display); font-size: 1.75rem; margin-bottom: 1rem; color: var(--turmeric); }.footer-col h4 { font-size: 1.25rem; margin-bottom: 1.5rem; color: var(--turmeric); }.footer-col p { color: rgba(255, 255, 255, 0.7); line-height: 1.7; margin-bottom: 1.5rem; }.footer-col ul { list-style: none; }.footer-col ul li { margin-bottom: 0.75rem; }.footer-col ul li a { color: rgba(255, 255, 255, 0.7); transition: var(--transition-smooth); }.footer-col ul li a:hover { color: var(--turmeric); padding-left: 5px; }.social-links { display: flex; gap: 1rem; }.social-links a {    width: 45px; height: 45px;    background: rgba(255, 255, 255, 0.1);    border-radius: 50%;    display: flex; align-items: center; justify-content: center;    transition: var(--transition-smooth);}.social-links a:hover { background: var(--saffron); transform: translateY(-5px); }.social-links svg { width: 20px; height: 20px; }.contact-info li { display: flex; align-items: flex-start; gap: 1rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 1rem; }.contact-info svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; }.hours li { display: flex; justify-content: space-between; color: rgba(255, 255, 255, 0.7); padding: 0.5rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); }.footer-bottom p { color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; }/* === Responsive === */@media (max-width: 968px) {    .nav-menu {        position: fixed;        top: 80px; right: -100%;        width: 70%; max-width: 350px;        height: calc(100vh - 80px);        background: white;        flex-direction: column;        padding: 2rem;        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);        transition: right 0.3s ease;        align-items: flex-start;    }    .nav-menu.active { right: 0; }    .hamburger { display: flex; }    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }    .hamburger.active span:nth-child(2) { opacity: 0; }    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }    .apply-inner { grid-template-columns: 1fr; gap: 3rem; }    .form-row { grid-template-columns: 1fr; }    .footer-grid { grid-template-columns: 1fr; }}@media (max-width: 640px) {    .perks-grid { grid-template-columns: 1fr; }    .apply-form-wrap { padding: 2rem 1.5rem; }}