/* ═══════════════════════════════════════════════════════════
   CAREERS PAGE - ZOHO INSPIRED DESIGN
   ═══════════════════════════════════════════════════════════ */

/* Smooth Scrolling & Performance Optimization */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Cross-Browser Compatibility */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Hardware Acceleration for Smooth Animations */
.career-card,
.future-card-large,
.future-card-small,
.future-card-medium,
.process-step,
.btn-primary-careers,
.btn-enquiry-submit,
.career-tab {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

/* Microsoft Edge & IE Support */
@supports (-ms-ime-align: auto) {
    .future-asymmetric-grid,
    .career-grid {
        display: -ms-grid;
    }
}

/* CSS Variables - Matching Index Page */
:root {
    --zoho-red: #3A7BD5;
    --zoho-dark-red: #2563EB;
    --zoho-orange: #60A5FA;
    --zoho-blue: #3A7BD5;
    --zoho-dark-blue: #2563EB;
    --white: #FFFFFF;
    --light-bg: #F8F9FA;
    --lighter-bg: #FAFBFC;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    --border: #E5E7EB;
    --border-light: #F3F4F6;
    --zoho-green: #10B981;
    --zoho-yellow: #F59E0B;
    --zoho-purple: #8B5CF6;
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-xxl: 64px;
    --space-xxxl: 96px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hero Section */
.careers-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #3A7BD5 0%, #2563B8 100%);
    margin-top: 80px;
}

.hero-content-careers {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-content-careers h1 {
    font-size: 52px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.hero-content-careers .hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.4;
}

.hero-content-careers .hero-description {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-xxl);
    line-height: 1.7;
}

.hero-cta-careers {
    display: flex;
    justify-content: center;
}

.btn-primary-careers {
    padding: 16px 40px;
    background: var(--white);
    color: var(--zoho-blue);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary-careers:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Hiring Process Section */
.hiring-process {
    padding: 100px 0;
    background: var(--white);
}

.process-content h2 {
    font-size: 40px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--space-md);
}

.lead-text {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
}

.process-step {
    text-align: center;
    padding: var(--space-lg);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: rgba(58, 123, 213, 0.2);
    margin-bottom: var(--space-md);
    line-height: 1;
}

.process-step h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.process-step p {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Future Careers Section - Asymmetric Tata Design */
.future-careers-asymmetric {
    padding: 120px 0;
    background: #FAFAFA;
}

.future-header-asymmetric {
    text-align: center;
    margin-bottom: 60px;
}

.future-header-asymmetric h2 {
    font-size: 48px;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.future-header-asymmetric p {
    font-size: 20px;
    font-weight: 300;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.future-asymmetric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Large Featured Card */
.future-card-large {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.future-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.future-card-large:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.card-content-large {
    padding: 40px;
}

.card-icon-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3A7BD5 0%, #00D4FF 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-icon-large i {
    font-size: 32px;
    color: var(--white);
}

.card-content-large h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.card-content-large p {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Right Column - Stacked Small Cards */
.future-cards-column {
    grid-row: 1 / 2;
    grid-column: 3 / 4;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.future-card-small {
    background: var(--white);
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.future-card-small:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3A7BD5 0%, #2563EB 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon-small i {
    font-size: 24px;
    color: var(--white);
}

.future-card-small h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.future-card-small p {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bottom Row - Three Medium Cards */
.future-card-medium {
    background: var(--white);
    padding: 35px;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    min-height: 250px;
}

.future-card-medium:nth-child(3) {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
}

.future-card-medium:nth-child(4) {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
}

.future-card-medium:nth-child(5) {
    grid-row: 2 / 3;
    grid-column: 3 / 4;
}

.future-card-medium:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.future-card-medium.featured {
    background: linear-gradient(135deg, #3A7BD5 0%, #2563B8 100%);
}

.future-card-medium.featured h3,
.future-card-medium.featured p {
    color: var(--white);
}

.future-card-medium.featured .card-icon-medium {
    background: rgba(255, 255, 255, 0.2);
}

.card-icon-medium {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #3A7BD5 0%, #00D4FF 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon-medium i {
    font-size: 26px;
    color: var(--white);
}

.future-card-medium h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.future-card-medium p {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .future-asymmetric-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 25px;
    }
}

@media (max-width: 1200px) {
    .future-asymmetric-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .future-card-large {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    
    .future-cards-column {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
        flex-direction: row;
        gap: 25px;
    }
    
    .future-card-medium:nth-child(3) {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
    
    .future-card-medium:nth-child(4) {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }
    
    .future-card-medium:nth-child(5) {
        grid-column: 1 / 3;
        grid-row: 4 / 5;
    }
}

@media (max-width: 1024px) {
    .future-asymmetric-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .future-card-large {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    
    .future-cards-column {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
        flex-direction: row;
        gap: 20px;
    }
    
    .future-card-medium:nth-child(3),
    .future-card-medium:nth-child(4) {
        grid-column: span 1;
        grid-row: 3 / 4;
    }
    
    .future-card-medium:nth-child(5) {
        grid-column: 1 / 3;
        grid-row: 4 / 5;
    }
}

/* Career Section */
.career-section {
    padding: 100px 0;
    background: var(--white);
}

.career-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.career-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-wrap {
    margin-bottom: var(--space-lg);
}

.section-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.career-desc {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Career Tabs */
.career-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: 60px;
}

.career-tab {
    padding: 12px 32px;
    background: transparent;
    border: 2px solid #E0E0E0;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.career-tab:hover {
    border-color: var(--zoho-blue);
    color: var(--zoho-blue);
}

.career-tab.active {
    background: var(--zoho-blue);
    border-color: var(--zoho-blue);
    color: var(--white);
}

/* Career Grid */
.career-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.career-card {
    background: #FFFFFF;
    padding: var(--space-xl);
    border-radius: 8px;
    border: 2px solid #E5E7EB;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
}

.career-card::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
    color: var(--zoho-blue);
    transition: var(--transition);
}

.career-card:hover::after {
    transform: translateX(5px);
}

.career-card:hover {
    border-color: var(--zoho-blue);
    box-shadow: 0 8px 24px rgba(58, 123, 213, 0.12);
    transform: translateY(-4px);
}

.career-card h2 {
    font-size: 22px;
    font-weight: 600;
    color: #10B981;
    margin-bottom: var(--space-md);
    text-align: left;
    order: 1;
}

.career-role-summary {
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    margin-bottom: var(--space-md);
    line-height: 1.6;
    text-align: left;
    order: 2;
    flex-grow: 1;
    display: -webkit-box;
    
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 6.4em;
}

.career-role-meta {
    font-size: 14px;
    font-weight: 500;
    color: var(--zoho-blue);
    margin-bottom: var(--space-sm);
    text-align: left;
    order: 3;
}

/* Hide role description in grid view */
.role-description {
    display: none;
}

.apply-btn:hover {
    background: #2563B8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(58, 123, 213, 0.3);
}

/* Hide cards based on filter */
.career-card[data-type="internship"] {
    display: block;
}

.career-card[data-type="experienced"] {
    display: none;
}

.career-tabs .career-tab[data-type="experienced"].active ~ .career-grid .career-card[data-type="internship"] {
    display: none;
}

.career-tabs .career-tab[data-type="experienced"].active ~ .career-grid .career-card[data-type="experienced"] {
    display: block;
}

/* FAQ Section - Careers */
.faq-careers-section {
    padding: 120px 0;
    background: var(--white);
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-lg, 24px);
}

.section-title-center {
    font-size: 42px;
    font-weight: 300;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--space-md, 16px);
    letter-spacing: -0.5px;
}

.faq-intro {
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    color: var(--text-gray);
    margin: -20px auto 60px;
}

.faq-list-careers {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item-careers {
    border-bottom: 1px solid #E0E0E0;
}

.faq-item-careers:last-child {
    border-bottom: none;
}

.faq-question-careers {
    width: 100%;
    padding: var(--space-lg, 24px) 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question-careers:hover {
    color: #3A7BD5;
}

.faq-question-careers i {
    font-size: 14px;
    color: #3A7BD5;
    transition: transform 0.3s ease;
}

.faq-item-careers.active .faq-question-careers i {
    transform: rotate(45deg);
}

.faq-answer-careers {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-careers.active .faq-answer-careers {
    max-height: 500px;
}

.faq-answer-careers p {
    padding: 0 0 var(--space-lg, 24px);
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .career-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }
}

@media (max-width: 1200px) {
    .career-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 1024px) {
    .careers-hero {
        padding: 100px 0 60px;
    }
    
    .hero-content-careers h1 {
        font-size: 40px;
    }
    
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .future-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .career-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .future-asymmetric-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .future-card-large {
        grid-column: 1 / 3;
    }
    
    .future-cards-column {
        grid-column: 1 / 3;
        flex-direction: row;
        gap: 20px;
    }
    
    .future-card-medium:nth-child(3),
    .future-card-medium:nth-child(4) {
        grid-column: span 1;
    }
    
    .future-card-medium:nth-child(5) {
        grid-column: 1 / 3;
    }
}

@media (max-width: 768px) {
    /* Future Careers Section */
    .future-careers-asymmetric {
        padding: 60px 0;
    }
    
    .future-header-asymmetric h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .future-header-asymmetric p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Symmetric single column layout for mobile */
    .future-asymmetric-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .future-card-large,
    .future-cards-column,
    .future-card-small,
    .future-card-medium {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
    }
    
    .future-cards-column {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .card-image-wrapper {
        height: 200px;
    }
    
    .card-content-large {
        padding: 25px 20px;
    }
    
    .card-content-large h3 {
        font-size: 22px;
    }
    
    .card-content-large p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .future-card-small,
    .future-card-medium {
        padding: 25px 20px;
    }
    
    .future-card-small h3,
    .future-card-medium h3 {
        font-size: 18px;
    }
    
    .future-card-small p,
    .future-card-medium p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .card-icon-large,
    .card-icon-small,
    .card-icon-medium {
        width: 50px;
        height: 50px;
    }
    
    .card-icon-large i,
    .card-icon-small i,
    .card-icon-medium i {
        font-size: 24px;
    }
    
    /* Hero Section */
    .careers-hero {
        padding: 80px 0 50px;
    }
    
    .hero-content-careers h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-content-careers .hero-subtitle {
        font-size: 18px;
        line-height: 1.4;
    }
    
    .hero-content-careers .hero-description {
        font-size: 15px;
        line-height: 1.6;
    }
    
    /* General Sections */
    .container {
        padding: 0 20px;
    }
    
    .hiring-process,
    .future-careers,
    .career-section {
        padding: 50px 0;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-step {
        padding: 25px 20px;
    }
    
    .future-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Career Section */
    .career-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .career-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .career-tab {
        flex: 1;
        min-width: 140px;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .career-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        padding: 0 15px;
    }
    
    .career-card {
        padding: var(--space-lg);
    }
    
    /* FAQ Section */
    .faq-careers-section {
        padding: 60px 0;
    }
    
    .section-title-center {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .faq-intro {
        font-size: 15px;
    }
    
    .faq-question-careers {
        font-size: 15px;
        padding: var(--space-md, 16px) 0;
    }
    
    .faq-answer-careers p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Career Enquiry Section */
    .career-enquiry-section {
        padding: 60px 0;
    }
    
    .enquiry-header h2 {
        font-size: 32px;
    }
    
    .enquiry-header p {
        font-size: 16px;
    }
    
    .enquiry-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .btn-enquiry-submit {
        padding: 16px 24px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    /* Future Careers Section */
    .future-careers-asymmetric {
        padding: 40px 0;
    }
    
    .future-header-asymmetric {
        margin-bottom: 30px;
    }
    
    .future-header-asymmetric h2 {
        font-size: 24px;
    }
    
    .future-header-asymmetric p {
        font-size: 14px;
    }
    
    .card-content-large,
    .future-card-small,
    .future-card-medium {
        padding: 20px 15px;
    }
    
    /* Hero Section */
    .hero-content-careers h1 {
        font-size: 24px;
    }
    
    .hero-content-careers .hero-subtitle {
        font-size: 16px;
    }
    
    /* Career Section */
    .section-title {
        font-size: 24px;
    }
    
    .career-tabs {
        flex-direction: column;
    }
    
    .career-tab {
        width: 100%;
        min-width: auto;
    }
    
    .career-card {
        padding: var(--space-md);
    }
    
    .process-step {
        padding: 20px 15px;
    }
}

/* ═══════════════════════════════════════════════════════════
   CAREER ENQUIRY SECTION
   ═══════════════════════════════════════════════════════════ */

.career-enquiry-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

.enquiry-content {
    max-width: 800px;
    margin: 0 auto;
}

.enquiry-header {
    text-align: center;
    margin-bottom: 50px;
}

.enquiry-header h2 {
    font-size: 40px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.enquiry-header p {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-gray);
}

.enquiry-form {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3A7BD5;
    box-shadow: 0 0 0 3px rgba(58, 123, 213, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-enquiry-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.btn-enquiry-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-enquiry-submit i {
    font-size: 20px;
}

/* ═══════════════════════════════════════════════════════════
   CAREERS WHATSAPP CONTACT SECTION
   ═══════════════════════════════════════════════════════════ */

.careers-whatsapp-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    position: relative;
    overflow: hidden;
}

.careers-whatsapp-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.careers-wa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.careers-wa-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #25D366;
    margin-bottom: 16px;
}

.careers-wa-text h2 {
    font-size: 42px;
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.careers-wa-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}

.careers-wa-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 48px 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.careers-wa-card:hover {
    border-color: #25D366;
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.15);
}

.wa-icon-big {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: #FFFFFF;
}

.careers-wa-card h3 {
    font-size: 22px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.careers-wa-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 24px;
}

.btn-wa-chat {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #25D366;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-wa-chat:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.wa-number {
    display: block;
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .careers-whatsapp-section { padding: 60px 0; }
    .careers-wa-content { grid-template-columns: 1fr; gap: 40px; }
    .careers-wa-text h2 { font-size: 28px; }
    .careers-wa-card { padding: 32px 24px; }
}
