/* ====================================================================
   SHIVBA PLACEMENT SERVICES - MAIN STYLESHEET
   A corporate, professional, responsive, card-based recruitment theme.
   ==================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --navy-900: #0F172A;
    --navy-800: #1E293B;
    --navy-700: #334155;
    
    --teal-600: #0284C7;
    --teal-700: #0369A1;
    --teal-50: #F0F9FF;

    --gold-500: #D89F28;
    --gold-600: #C59B27;
    --gold-50: #FFFDF0;
    
    --emerald-600: #0D9488;
    --emerald-50: #F0FDF4;

    --amber-500: #F59E0B;
    --amber-50: #FFFBEB;

    --slate-50: #F8FAFC;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-400: #94A3B8;
    --slate-600: #475569;
    --slate-900: #0F172A;

    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #64748B;
    
    /* Layout Variables */
    --max-width: 1240px;
    --header-height: 76px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 8px 16px -2px rgba(15, 23, 42, 0.08), 0 2px 4px -1px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 30px -8px rgba(15, 23, 42, 0.12), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
    --shadow-hover: 0 25px 35px -5px rgba(2, 132, 199, 0.15), 0 10px 15px -5px rgba(15, 23, 42, 0.08);

    /* Transitions */
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--slate-50);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Inter', sans-serif;
    color: var(--navy-900);
    font-weight: 700;
    line-height: 1.25;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ====================================================================
   HEADER & NAVBAR
   ==================================================================== */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-200);
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 54px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy-900);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.brand-name span {
    color: var(--gold-500);
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--slate-600);
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--teal-600);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2.5px;
    background-color: var(--teal-600);
    border-radius: 4px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-header {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
    color: #ffffff;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-header:hover {
    background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy-900);
    cursor: pointer;
    padding: 0.5rem;
}

/* ====================================================================
   HERO SECTION (INTERACTIVE SPLIT-SCREEN JOB MATCHER TERMINAL)
   ==================================================================== */
.hero-split-section {
    background: #090F1E;
    color: #ffffff;
    padding: 4.5rem 0 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.glow-top-left {
    width: 450px;
    height: 450px;
    top: -150px;
    left: -100px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.3) 0%, transparent 70%);
}

.glow-bottom-right {
    width: 500px;
    height: 500px;
    bottom: -150px;
    right: -100px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.3) 0%, transparent 70%);
}

.split-hero-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: stretch;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

/* Matcher Console Left Side */
.matcher-console {
    background: linear-gradient(145deg, #111A2E 0%, #0D1424 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.console-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(13, 148, 136, 0.15);
    border: 1px solid rgba(13, 148, 136, 0.35);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.825rem;
    font-weight: 700;
    color: #2DD4BF;
    margin-bottom: 1.25rem;
    width: fit-content;
}

.pulse-emerald {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.25);
}

.matcher-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.accent-emerald {
    color: #2DD4BF;
}

.matcher-description {
    font-size: 0.975rem;
    color: #94A3B8;
    margin-bottom: 1.5rem;
    line-height: 1.55;
}

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

.matcher-label {
    font-size: 0.825rem;
    font-weight: 700;
    color: #CBD5E1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.matcher-label i {
    color: #38BDF8;
}

.dept-tabs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.dept-tab {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #CBD5E1;
    padding: 0.55rem 0.95rem;
    border-radius: 10px;
    font-size: 0.825rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.dept-tab:hover,
.dept-tab.active {
    background: var(--teal-600);
    border-color: var(--teal-600);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

.stipend-selector-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.stipend-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #CBD5E1;
    padding: 0.6rem;
    border-radius: 10px;
    font-size: 0.825rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.stipend-btn:hover,
.stipend-btn.active {
    background: #0D9488;
    border-color: #0D9488;
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.35);
}

.matcher-footer-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    flex-wrap: wrap;
}

.btn-console-apply {
    background: linear-gradient(135deg, var(--teal-600), #0284C7);
    color: #ffffff;
    padding: 0.85rem 1.65rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.35);
}

.btn-console-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(2, 132, 199, 0.45);
}

.btn-console-wa {
    background: rgba(37, 211, 102, 0.12);
    color: #ffffff;
    border: 1px solid rgba(37, 211, 102, 0.35);
    padding: 0.85rem 1.4rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-console-wa i {
    color: #25D366;
}

.btn-console-wa:hover {
    background: rgba(37, 211, 102, 0.25);
    border-color: #25D366;
}

/* Featured Deck Card Right Side */
.featured-deck-card {
    background: linear-gradient(145deg, #131E3A 0%, #0F172A 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    transition: var(--transition);
}

.featured-deck-card:hover {
    border-color: rgba(45, 212, 191, 0.4);
}

.deck-image-container {
    position: relative;
    height: 220px;
    width: 100%;
}

.deck-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deck-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, #131E3A 0%, transparent 100%);
}

.deck-badge-urgent {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #DC2626;
    color: #ffffff;
    font-size: 0.725rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.4);
}

.deck-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.deck-card-dept {
    font-size: 0.75rem;
    font-weight: 700;
    color: #2DD4BF;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.deck-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.35rem;
}

.deck-card-stipend {
    font-size: 1.4rem;
    font-weight: 800;
    color: #34D399;
    margin-bottom: 1.25rem;
}

.deck-card-stipend span {
    font-size: 0.85rem;
    color: #94A3B8;
    font-weight: 500;
}

.deck-perks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.deck-perk-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.6rem 0.75rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.deck-perk-item i {
    color: #38BDF8;
    font-size: 1rem;
    flex-shrink: 0;
}

.deck-perk-item small {
    display: block;
    font-size: 0.675rem;
    color: #94A3B8;
    text-transform: uppercase;
}

.deck-perk-item strong {
    display: block;
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 600;
}

.btn-deck-primary {
    background: linear-gradient(135deg, #0D9488, #059669);
    color: #ffffff;
    border: none;
    padding: 0.9rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-deck-primary:hover {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
}

/* Metric Strip */
.split-metrics-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.metric-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.25rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.metric-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(45, 212, 191, 0.3);
    transform: translateY(-2px);
}

.metric-box i {
    font-size: 1.5rem;
    color: #2DD4BF;
}

.metric-box h4 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.metric-box p {
    font-size: 0.775rem;
    color: #94A3B8;
}

/* ====================================================================
   VACANCIES SECTION & SEARCH/FILTER BAR
   ==================================================================== */
.vacancies-section {
    padding: 4rem 0 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

.section-subtitle {
    color: var(--teal-600);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Search & Filter Card */
.filter-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--slate-200);
    margin-bottom: 3rem;
}

.filter-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr auto;
    gap: 1rem;
    align-items: center;
}

.search-box {
    position: relative;
}

.search-box i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--slate-400);
    font-size: 1rem;
}

.filter-input {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 3rem;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--navy-900);
    background-color: var(--slate-50);
    transition: var(--transition);
}

.filter-input:focus {
    outline: none;
    border-color: var(--teal-600);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12);
}

.filter-select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--navy-900);
    background-color: var(--slate-50);
    cursor: pointer;
    transition: var(--transition);
}

.filter-select:focus {
    outline: none;
    border-color: var(--teal-600);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12);
}

.btn-reset {
    background: var(--slate-100);
    color: var(--slate-600);
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-200);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.btn-reset:hover {
    background: var(--slate-200);
    color: var(--navy-900);
}

.filter-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--slate-100);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.results-count {
    font-weight: 600;
    color: var(--navy-900);
}

/* ====================================================================
   VACANCY CARDS GRID
   ==================================================================== */
.vacancies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2rem;
    min-height: 450px;
}

.vacancy-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.vacancy-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(2, 132, 199, 0.3);
}

.vacancy-card-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    background: linear-gradient(180deg, var(--slate-50) 0%, #ffffff 100%);
    border-bottom: 1px solid var(--slate-100);
    position: relative;
}

.card-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.dept-badge {
    background: var(--teal-50);
    color: var(--teal-700);
    border: 1px solid rgba(2, 132, 199, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.urgent-badge {
    background: #FEF2F2;
    color: #DC2626;
    border: 1px solid #FECACA;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    font-size: 0.725rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.job-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.job-location {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.job-location i {
    color: var(--teal-600);
}

/* Vacancy Details List */
.vacancy-body {
    padding: 1.5rem;
    flex-grow: 1;

    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.highlight-row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px dashed var(--slate-100);
}

.highlight-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.highlight-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--slate-100);
    color: var(--teal-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Icon specific background accents */
.highlight-row.stipend-row .highlight-icon {
    background: #ECFDF5;
    color: #059669;
}
.highlight-row.openings-row .highlight-icon {
    background: #EFF6FF;
    color: #2563EB;
}
.highlight-row.food-row .highlight-icon {
    background: #FFF7ED;
    color: #EA580C;
}

.highlight-content {
    display: flex;
    flex-direction: column;
}

.highlight-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.1rem;
}

.highlight-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-900);
}

.highlight-row.stipend-row .highlight-value {
    color: #059669;
    font-size: 1rem;
    font-weight: 700;
}

.highlight-row.openings-row .highlight-value {
    color: #2563EB;
    font-weight: 700;
}

/* Card Action Footer */
.vacancy-card-footer {
    padding: 1.25rem 1.5rem;
    background: var(--slate-50);
    border-top: 1px solid var(--slate-200);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-apply {
    width: 100%;
    background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
    color: #ffffff;
    border: none;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.2);
}

.btn-apply:hover {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
    box-shadow: 0 6px 15px rgba(15, 23, 42, 0.3);
    transform: translateY(-1px);
}

/* No Results State */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: #ffffff;
    border-radius: var(--radius-xl);
    border: 2px dashed var(--slate-200);
}

.no-results i {
    font-size: 3rem;
    color: var(--slate-400);
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: 1.35rem;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
}

.no-results p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* ====================================================================
   COMPANY FEATURES & WHY CHOOSE US
   ==================================================================== */
.features-section {
    padding: 4rem 0;
    background: #ffffff;
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: #ffffff;
    border-color: var(--teal-600);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--teal-50), #E0F2FE);
    color: var(--teal-600);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--navy-900);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ====================================================================
   MODAL DIALOG (APPLICATION POPUP)
   ==================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: #ffffff;
    width: 100%;
    max-width: 560px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: scale(0.95) translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid var(--slate-200);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-card {
    transform: scale(1) translateY(0);
}

.modal-header {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
    color: #ffffff;
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.modal-header-text h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.modal-header-text p {
    font-size: 0.85rem;
    color: #94A3B8;
}

.modal-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #ffffff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-body {
    padding: 1.75rem;
    overflow-y: auto;
}

.quick-connect-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.btn-connect-wa {
    background: #25D366;
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-connect-wa:hover {
    background: #1DA851;
}

.btn-connect-call {
    background: var(--navy-900);
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-connect-call:hover {
    background: var(--teal-600);
}

.divider-text {
    text-align: center;
    position: relative;
    margin: 1.25rem 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.divider-text::before,
.divider-text::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background: var(--slate-200);
}

.divider-text::before { left: 0; }
.divider-text::after { right: 0; }

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 0.4rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--navy-900);
    background-color: var(--slate-50);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--teal-600);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12);
}

.form-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
    color: #ffffff;
    border: none;
    padding: 0.9rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
}

.modal-success-state {
    display: none;
    text-align: center;
    padding: 2rem 1rem;
}

.modal-success-state i {
    font-size: 3.5rem;
    color: var(--emerald-600);
    margin-bottom: 1rem;
}

.modal-success-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-success-state p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* ====================================================================
   FOOTER
   ==================================================================== */
.footer {
    background: var(--navy-900);
    color: #94A3B8;
    padding: 4rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.footer-brand h3 {
    color: #ffffff;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--teal-600);
    transform: translateY(-2px);
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #38BDF8;
    padding-left: 4px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--teal-600);
    margin-top: 3px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #94A3B8;
}

.footer-credit a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-credit a:hover {
    color: #38BDF8;
}

.footer-credit strong {
    color: #F8FAFC;
    font-weight: 600;
    transition: var(--transition);
}

.footer-credit a:hover strong {
    color: #38BDF8;
}

.footer-credit i {
    animation: heartbeat 1.8s infinite ease-in-out;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ====================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ==================================================================== */
@media (max-width: 1024px) {
    .split-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .matcher-title {
        font-size: 2.2rem;
    }

    .split-metrics-strip {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    :root {
        --header-height: 68px;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.25rem;
        border-bottom: 1px solid var(--slate-200);
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .matcher-title {
        font-size: 1.85rem;
    }

    .stipend-selector-grid {
        grid-template-columns: 1fr;
    }

    .matcher-footer-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-console-apply,
    .btn-console-wa {
        width: 100%;
        justify-content: center;
    }

    .deck-perks-grid {
        grid-template-columns: 1fr;
    }

    .split-metrics-strip {
        grid-template-columns: 1fr;
    }

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

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

    .quick-connect-options {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ====================================================================
   TRIPTADKA EXCLUSIVE HIRING DRIVE SECTION & STYLES
   ==================================================================== */
.badge-nav-hot {
    background: #EF4444;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
    margin-right: 0.2rem;
    display: inline-block;
    vertical-align: middle;
}

.triptadka-section {
    padding: 5rem 0;
    background: #0B132B;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.triptadka-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
}

.tt-glow-left {
    width: 500px;
    height: 500px;
    top: -100px;
    left: -150px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.25) 0%, transparent 70%);
}

.tt-glow-right {
    width: 550px;
    height: 550px;
    bottom: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.3) 0%, transparent 70%);
}

.triptadka-banner-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    padding: 3.5rem 3rem;
    position: relative;
    z-index: 2;
}

.triptadka-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 2.5rem auto;
}

.triptadka-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(13, 148, 136, 0.15);
    color: #2DD4BF;
    border: 1px solid rgba(45, 212, 191, 0.35);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.2);
}

.tt-pulse-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3);
    animation: ttPulse 2s infinite;
}

@keyframes ttPulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.triptadka-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.025em;
    margin-bottom: 0.35rem;
    line-height: 1.2;
}

.triptadka-tagline {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--gold-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.triptadka-subtitle {
    font-size: 1.1rem;
    color: #94A3B8;
    line-height: 1.65;
}

.triptadka-subtitle strong {
    color: #ffffff;
}

/* Stats Counter Strip */
.tt-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.tt-stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.25rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.tt-stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(56, 189, 248, 0.35);
    transform: translateY(-2px);
}

.tt-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.2), rgba(13, 148, 136, 0.2));
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #38BDF8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.tt-stat-card h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0.2rem;
}

.tt-stat-card p {
    color: #94A3B8;
    font-size: 0.775rem;
    font-weight: 500;
}

/* Resorts Showcase Grid */
.tt-resorts-showcase {
    margin-bottom: 3rem;
}

.tt-resorts-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tt-resorts-title h3 {
    color: #ffffff;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.tt-resorts-title h3 i {
    color: #2DD4BF;
}

.tt-resorts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.resort-property-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 1.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.resort-property-card:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(45, 212, 191, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.resort-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
}

.resort-tag-loc {
    font-size: 0.775rem;
    font-weight: 700;
    color: #38BDF8;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.resort-total-badge {
    font-size: 0.75rem;
    font-weight: 800;
    color: #2DD4BF;
    background: rgba(13, 148, 136, 0.2);
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
}

.resort-name {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 1.15rem;
    line-height: 1.25;
}

.resort-breakdown-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: auto;
    padding-top: 0.85rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.breakdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.825rem;
}

.b-label {
    color: #CBD5E1;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.b-label i {
    color: #38BDF8;
    font-size: 0.8rem;
}

.b-count {
    color: #ffffff;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.15rem 0.55rem;
    border-radius: 4px;
}

/* Detailed Matrix Table Container */
.triptadka-table-container {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 1.75rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.table-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.table-card-header h3 {
    font-size: 1.25rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.table-card-header h3 i {
    color: #38BDF8;
}

.matrix-subtitle {
    font-size: 0.825rem;
    color: #94A3B8;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.triptadka-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.95rem;
}

.triptadka-table th {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 1rem 1.25rem;
    font-weight: 700;
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.triptadka-table th:first-child {
    text-align: left;
    border-top-left-radius: 12px;
}

.triptadka-table th:last-child {
    border-top-right-radius: 12px;
}

.triptadka-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: transparent;
    text-align: center;
    vertical-align: middle;
    color: #CBD5E1;
}

.triptadka-table td:first-child {
    text-align: left;
}

.triptadka-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.04);
}

.prop-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 1rem;
}

.prop-loc {
    font-size: 0.8rem;
    color: #38BDF8;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.15rem;
}

.count-pill {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: 700;
    padding: 0.3rem 0.85rem;
    border-radius: 8px;
    display: inline-block;
    min-width: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.total-cell {
    color: #2DD4BF;
    font-size: 1rem;
    font-weight: 700;
}

.triptadka-table tfoot td {
    background: rgba(13, 148, 136, 0.15);
    border-top: 2px solid rgba(45, 212, 191, 0.3);
    border-bottom: none;
    font-size: 1rem;
    color: #ffffff;
}

.triptadka-table tfoot td:first-child {
    border-bottom-left-radius: 12px;
}

.triptadka-table tfoot td:last-child {
    border-bottom-right-radius: 12px;
}

.grand-total-pill {
    background: #0D9488;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.925rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

/* Department Roles Grid */
.triptadka-roles-section {
    margin-bottom: 3rem;
}

.roles-heading {
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.roles-heading i {
    color: #2DD4BF;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.role-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.75rem;
    transition: var(--transition);
}

.role-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.role-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.role-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.fo-icon { background: rgba(2, 132, 199, 0.2); border: 1px solid rgba(56, 189, 248, 0.3); color: #38BDF8; }
.steward-icon { background: rgba(245, 158, 11, 0.2); border: 1px solid rgba(251, 191, 36, 0.3); color: #FBBF24; }
.hk-icon { background: rgba(124, 58, 237, 0.2); border: 1px solid rgba(167, 139, 250, 0.3); color: #A78BFA; }

.role-card-header h4 {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.role-vacancies {
    font-size: 0.775rem;
    font-weight: 700;
    color: #2DD4BF;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.role-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.role-bullets li {
    font-size: 0.9rem;
    color: #CBD5E1;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.45;
}

.role-bullets li i {
    color: #10B981;
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Key Perks Section */
.triptadka-perks-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.perks-heading {
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.perks-heading i {
    color: #38BDF8;
}

.triptadka-perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
    margin-bottom: 1.5rem;
}

.perk-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.15rem 1.25rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.perk-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(45, 212, 191, 0.3);
}

.perk-box i {
    font-size: 1.4rem;
    color: #2DD4BF;
    flex-shrink: 0;
}

.perk-box small {
    display: block;
    font-size: 0.725rem;
    color: #94A3B8;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.perk-box strong {
    display: block;
    font-size: 0.925rem;
    color: #ffffff;
    font-weight: 700;
}

.full-width-perk {
    grid-column: 1 / -1;
    background: rgba(2, 132, 199, 0.12);
    border-color: rgba(56, 189, 248, 0.3);
}

.full-width-perk i {
    color: #38BDF8;
}

.ideal-for-box {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 1.1rem 1.5rem;
    border-radius: 14px;
    color: #D1FAE5;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    line-height: 1.5;
}

.ideal-for-box i {
    font-size: 1.35rem;
    color: #10B981;
    flex-shrink: 0;
}

/* Call to Action Buttons */
.triptadka-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-tt-apply {
    background: linear-gradient(135deg, #0284C7 0%, #0D9488 100%);
    color: #ffffff;
    border: none;
    padding: 1.1rem 2.5rem;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    box-shadow: 0 10px 25px rgba(2, 132, 199, 0.4);
}

.btn-tt-apply:hover {
    background: linear-gradient(135deg, #0369A1 0%, #0F766E 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(2, 132, 199, 0.5);
}

.btn-tt-wa {
    background: #25D366;
    color: #ffffff;
    padding: 1.1rem 2.25rem;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-tt-wa:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.job-resp-bullets {
    list-style: none;
    margin-top: 0.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.job-resp-bullets li {
    font-size: 0.825rem;
    color: var(--slate-700);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.job-resp-bullets li i {
    color: #10B981;
    font-size: 0.75rem;
}

@media (max-width: 1200px) {
    .tt-resorts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .tt-stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .roles-grid {
        grid-template-columns: 1fr;
    }
    .triptadka-perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .triptadka-banner-card {
        padding: 2rem 1.25rem;
    }
    .triptadka-title {
        font-size: 1.85rem;
    }
    .tt-stats-strip {
        grid-template-columns: 1fr;
    }
    .tt-resorts-grid {
        grid-template-columns: 1fr;
    }
    .triptadka-perks-grid {
        grid-template-columns: 1fr;
    }
    .triptadka-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-tt-apply, .btn-tt-wa {
        width: 100%;
        justify-content: center;
    }
}
