/* Root Variables - Enhanced Modern Style */
:root {
    --primary-color: #00A1E0;
    --secondary-color: #032D60;
    --accent-color: #FF9500;
    --text-dark: #1a1a1a;
    --text-gray: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #FFFFFF;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --border-color: #e2e8f0;
    --success-color: #48bb78;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0.25;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo {
    height: 40px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-text .brand-name {
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 0.2px;
    font-size: 16px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 17px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-menu a:hover::after {
    transform: scaleX(1);
}

.btn-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Section 1: Hero */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-background.png');
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 900px;
    width: 100%;
    padding: 0 24px;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    box-sizing: border-box;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 48px;
    word-wrap: break-word;
    max-width: 100%;
}

.hero-kicker {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.95;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero-cta {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-hero {
    background: var(--accent-color);
    color: white;
    padding: 18px 48px;
    font-size: 18px;
}

.btn-hero:hover {
    background: #E68600;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(255, 149, 0, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 24px;
    animation: bounce 2s infinite;
    z-index: 1;
}

/* Section 2: About Us - Fade-In Effect */
.about-section {
    padding: 80px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 161, 224, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 48px;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.about-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-smooth);
}

.about-logo.animate {
    opacity: 1;
    transform: scale(1);
}

.about-logo-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 161, 224, 0.2));
    transition: var(--transition-base);
}

.about-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(0, 161, 224, 0.3));
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.about-text {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
    opacity: 0;
    transform: translateX(30px);
    transition: var(--transition-smooth);
}

.about-text.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Section 3: Vision & Mission - Flip Card Effect */
.vision-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.vision-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
    opacity: 0;
    transform: translateY(50px);
}

.vision-card.animate {
    opacity: 1;
    transform: translateY(0);
}


.vision-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: var(--transition-base);
}

.vision-card:hover .card-image::after {
    opacity: 1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-card:hover .card-image img {
    transform: scale(1.1) rotate(2deg);
}

.card-content {
    padding: 36px;
    position: relative;
    z-index: 2;
}

.card-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}


.card-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.card-footer {
    padding: 20px 36px 28px 36px;
    border-top: 1px solid var(--border-color);
    background: #fff;
    position: relative;
    z-index: 2;
}

.card-text.small {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Section 5: Digital Journey - Stagger Animation */
.journey-section {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.journey-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 149, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-title.center {
    margin-bottom: 64px;
    opacity: 0;
    transform: translateY(-20px);
    transition: var(--transition-smooth);
}

.section-title.center.animate {
    opacity: 1;
    transform: translateY(0);
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 24px;
    align-items: stretch;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.journey-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    border: 2px solid transparent;
}

.journey-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.journey-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.journey-card.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
}


.journey-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(0, 161, 224, 0.3);
    transition: var(--transition-base);
}

.journey-card:hover .journey-number {
    transform: rotate(360deg) scale(1.1);
}

.journey-card.highlight .journey-number {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.journey-image {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 12px;
    height: 200px;
}

.journey-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition-base);
}

.journey-card:hover .journey-image img {
    transform: scale(1.05);
}

.journey-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
    transition: var(--transition-base);
}

.journey-card:hover .journey-title {
    transform: translateX(5px);
}

.journey-card.highlight .journey-title {
    color: white;
}

.journey-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.journey-card.highlight .journey-text {
    color: rgba(255, 255, 255, 0.95);
}

.journey-arrow {
    font-size: 32px;
    color: var(--primary-color);
    align-self: center;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(8px); opacity: 1; }
}

.journey-arrow::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 8px 0;
}

/* Section 6: Implementation Process */
.process-section {
    padding: 80px 0;
    background: var(--bg-white);
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.implementation-grid {
    display: grid;
    grid-template-columns: 52% 45%;
    gap: 48px;
    align-items: start;
    width: 100%;
    max-width: 100%;
}

.implementation-left .process-intro {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.process-benefits {
    list-style: none;
}

.process-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-gray);
}

.process-benefits i {
    color: var(--success-color);
}

.implementation-right img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Section 7 & 8: Sales Cloud & Service Cloud */
.sales-cloud-section,
.service-cloud-section {
    padding: 80px 0;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.sales-cloud-section {
    background: var(--bg-light);
}

.service-cloud-section {
    background: var(--bg-white);
}

.sales-grid {
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 48px;
    align-items: start;
    width: 100%;
    max-width: 100%;
}

.service-grid {
    display: grid;
    grid-template-columns: 39% 60%;
    gap: 48px;
    align-items: start;
    width: 100%;
    max-width: 100%;
}

.diagram-image img {
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.accordion-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 10px 0;
}

/* Accordion - Enhanced Modern Style */
.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.accordion-item:nth-child(1) { transition-delay: 0.03s; }
.accordion-item:nth-child(2) { transition-delay: 0.06s; }
.accordion-item:nth-child(3) { transition-delay: 0.09s; }
.accordion-item:nth-child(4) { transition-delay: 0.12s; }
.accordion-item:nth-child(5) { transition-delay: 0.15s; }
.accordion-item:nth-child(6) { transition-delay: 0.18s; }
.accordion-item:nth-child(7) { transition-delay: 0.21s; }

.accordion-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    background: var(--bg-white);
    transition: var(--transition-base);
    position: relative;
}


.accordion-header:hover {
    background: var(--bg-light);
    padding-left: 28px;
}

.accordion-item.active .accordion-header {
    background: linear-gradient(90deg, rgba(0, 161, 224, 0.05), transparent);
}

.accordion-header h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
}

.accordion-item.active .accordion-header h4 {
    color: var(--primary-color);
}

.accordion-header i {
    font-size: 20px;
    color: var(--primary-color);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
    color: var(--accent-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 20px;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 0 20px 16px 20px;
}

.accordion-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Section 9: Experts - Redesigned Layout */
.experts-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, rgba(0, 161, 224, 0.03) 100%);
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.experts-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(3, 45, 96, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.experts-wrapper {
    display: flex;
    flex-direction: column;
}

.experts-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.experts-text {
    opacity: 0;
    transform: translateX(-40px);
    transition: var(--transition-smooth);
}

.experts-text.animate {
    opacity: 1;
    transform: translateX(0);
}

.experts-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.3;
}

.experts-text p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.expertise-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
}

.expertise-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.expertise-list li strong {
    color: var(--secondary-color);
}

.experts-image {
    opacity: 0;
    transform: translateX(40px);
    transition: var(--transition-smooth);
}

.experts-image.animate {
    opacity: 1;
    transform: translateX(0);
}

.experts-image img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.experts-image img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

/* Certifications Section */
.certifications-section {
    margin-top: 20px;
    padding-top: 60px;
    border-top: 2px solid var(--border-color);
}

.certifications-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.certifications-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.cert-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.cert-logos img {
    width: 100%;
    height: auto;
    max-height: 110px;
    aspect-ratio: 7 / 5;
    object-fit: contain;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    padding: 16px;
    opacity: 0;
    transform: scale(0.9);
}

.cert-logos img.animate {
    opacity: 1;
    transform: scale(1);
}

.cert-logos:hover img {
    opacity: 0.5;
    filter: grayscale(80%);
}

.cert-logos img:hover {
    opacity: 1 !important;
    transform: scale(1.1) translateY(-5px);
    box-shadow: var(--shadow-xl);
    filter: grayscale(0%);
    z-index: 10;
    background: linear-gradient(135deg, rgba(0, 161, 224, 0.05), rgba(255, 149, 0, 0.05));
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
}

.contact-image {
    width: 100%;
    height: 43%;
    max-height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.contact-image img:hover {
    transform: scale(1.05);
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--secondary-color);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition-base);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 161, 224, 0.1);
}

.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.contact-form input.error:focus,
.contact-form select.error:focus,
.contact-form textarea.error:focus {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn-block {
    width: 100%;
    padding: 14px 32px;
    font-size: 16px;
    margin-top: 8px;
}

/* Section 10: About (Extended) - Parallax Effect */
.about-more-section {
    padding: 80px 0;
    background: var(--bg-white);
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.about-more-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 149, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-more-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 48px;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.about-more-content {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-smooth);
}

.about-more-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-more-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.about-more-heading::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.about-quote {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 16px 0 28px 0;
    font-style: italic;
}


.about-more-content p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateX(-20px);
    transition: var(--transition-smooth);
}

.about-more-content p.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-more-image {
    opacity: 0;
    transform: scale(0.95);
    transition: var(--transition-smooth);
    position: relative;
}

.about-more-image.animate {
    opacity: 1;
    transform: scale(1);
}

.about-more-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0.1;
    border-radius: 12px;
    z-index: -1;
}

.about-more-image img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.about-more-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Tablet & Mobile Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .implementation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sales-grid,
    .service-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .diagram-image img {
        max-height: 480px;
    }
    
    .implementation-right img {
        max-height: 400px;
    }
}

@media (max-width: 1024px) {
    .about-grid,
    .about-more-grid,
    .experts-content-grid,
    .contact-wrapper { 
        grid-template-columns: 1fr; 
        gap: 32px; 
    }
    
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .journey-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .journey-arrow {
        display: none;
    }
    
    .card-image { 
        height: 220px; 
    }
    
    .journey-image { 
        height: 200px; 
    }
    
    .diagram-image img { 
        max-height: 420px; 
    }
    
    .implementation-right img { 
        max-height: 360px; 
    }
    
    .experts-wrapper {
        gap: 40px;
    }
    
    .experts-content-grid {
        gap: 40px;
    }
    
    .experts-text h3 {
        font-size: 26px;
    }
    
    .experts-image img { 
        max-height: 320px; 
    }
    
    .certifications-section {
        padding-top: 40px;
        margin-top: 0;
    }
    
    .certifications-title {
        font-size: 24px;
        margin-bottom: 32px;
    }
    
    .cert-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 10px 0;
    }
    
    .cert-logos img { 
        max-height: 100px; 
        padding: 12px; 
    }
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 48px;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    box-shadow: var(--shadow-lg);
    animation: slideDown 0.3s ease;
}

.close {
    color: var(--text-gray);
    float: right;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 64px 0 24px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 48px;
}

.footer-brand {
    flex: 1;
    min-width: 0;
}

.footer-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
    line-height: 1.3;
    word-wrap: break-word;
}

.footer-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    line-height: 1.6;
}

.footer-info {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-info-col {
    min-width: 250px;
}

.footer-info-col h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer-info-col p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
}

.footer-info-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-base);
    display: inline-block;
}

.footer-info-col a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}



/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 161, 224, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 161, 224, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 161, 224, 0);
    }
}

@keyframes neonPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.6;
    }
}

/* Responsive Design */
@media (max-width: 1136px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 32px 0;
        gap: 16px;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 14px 20px;
    }
    
    .btn-nav {
        display: inline-block;
        margin: 16px 20px;
    }
    
    .hamburger {
        display: flex;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }
    
    .hero-kicker {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .footer-main {
        gap: 48px;
    }
    
    .footer-info {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .navbar .container {
        padding: 12px 16px;
    }
    
    .nav-brand {
        gap: 8px;
    }
    
    .logo {
        height: 32px;
    }
    
    .brand-name {
        font-size: 14px;
    }
    
    .hero-section {
        height: 80vh;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .hero-kicker {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .section-title {
        font-size: 26px;
        margin-bottom: 16px;
    }
    
    section {
        padding: 60px 0 !important;
    }
    
    .about-section,
    .vision-section,
    .journey-section,
    .process-section,
    .sales-cloud-section,
    .service-cloud-section,
    .experts-section,
    .about-more-section {
        padding: 50px 0 !important;
    }
    
    .about-logo-img {
        max-width: 200px;
    }
    
    .vision-grid {
        max-width: 100%;
    }
    
    .card-image {
        height: 180px;
    }
    
    .card-title {
        font-size: 24px;
    }
    
    .journey-card {
        padding: 20px;
    }
    
    .journey-image {
        height: 160px;
    }
    
    .journey-title {
        font-size: 18px;
    }
    
    .diagram-image img {
        max-height: 320px;
    }
    
    .implementation-right img {
        max-height: 280px;
    }
    
    .accordion-header {
        padding: 14px 16px;
    }
    
    .accordion-header h4 {
        font-size: 14px;
    }
    
    .accordion-content p {
        font-size: 13px;
    }
    
    .experts-wrapper {
        gap: 32px;
    }
    
    .experts-content-grid {
        gap: 32px;
    }
    
    .experts-text h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .expertise-list {
        margin: 20px 0;
    }
    
    .expertise-list li {
        font-size: 15px;
        margin-bottom: 12px;
        padding-left: 24px;
    }
    
    .experts-text p {
        font-size: 15px;
    }
    
    .experts-image img {
        max-height: 280px;
    }
    
    .certifications-section {
        padding-top: 32px;
    }
    
    .certifications-title {
        font-size: 22px;
        margin-bottom: 24px;
    }
    
    .cert-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 10px 0;
    }
    
    .cert-logos img {
        max-height: 90px;
        padding: 10px;
    }
    
    .about-more-image img {
        max-height: 320px;
    }
    
    .contact-image {
        max-height: 300px;
    }
    
    .contact-form-container {
        padding: 28px 20px;
    }
    
    .contact-form-title {
        font-size: 20px;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-info-col {
        min-width: auto;
    }
    
    .footer {
        padding: 48px 0 24px;
    }
    
    .footer-title {
        font-size: 20px;
    }
    
    .footer-subtitle {
        font-size: 14px;
    }
    
    .footer-info-col h3 {
        font-size: 16px;
    }
    
    .footer-info-col p {
        font-size: 14px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 14px 32px;
        font-size: 16px;
    }
    
    .cert-logos {
        grid-template-columns: 1fr 1fr;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 32px 24px;
    }
}

/* ============================================
   RECRUITMENT PAGES STYLES
   ============================================ */

/* Recruitment Hero */
.recruitment-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
}

.recruitment-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/hero-background.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.recruitment-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 56px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Job Listings Section */
.job-listings-section {
    padding: 70px 0;
    background: var(--bg-light);
}

.job-listings-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.job-card-simple {
    background: white;
    border-radius: 16px;
    padding: 28px 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border: 2px solid transparent;
}

.job-card-simple:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.job-card-left {
    flex-shrink: 0;
}

.job-badge-simple {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.job-card-center {
    flex: 1;
    text-align: center;
}

.job-title-simple {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.job-card-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.job-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 14px;
    white-space: nowrap;
}

.job-time i {
    color: var(--text-gray);
    font-size: 16px;
}

.btn-view-detail {
    background: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-view-detail:hover {
    background: var(--secondary-color);
    transform: translateX(4px);
}

.job-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--success-color), #00C851);
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.job-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e0e0e0;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-gray);
    font-size: 13px;
}

.job-meta-item i {
    color: var(--primary-color);
    font-size: 13px;
}

.job-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 14px;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.job-tag {
    background: rgba(0, 161, 224, 0.1);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.btn-job {
    width: 100%;
    padding: 10px 18px;
    font-weight: 600;
    text-align: center;
    font-size: 14px;
}

/* Work Environment Section */
.work-environment-section {
    padding: 70px 0;
    background: white;
}

.environment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.environment-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.environment-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.environment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.environment-card:hover .environment-icon {
    transform: scale(1.1) rotate(5deg);
}

.environment-icon i {
    font-size: 36px;
    color: white;
}

.environment-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.environment-description {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Job Detail Page */
.job-detail-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, rgba(0, 95, 178, 0.03) 0%, rgba(0, 161, 224, 0.03) 100%);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 32px;
    transition: var(--transition-base);
}

.back-link:hover {
    gap: 12px;
    color: var(--secondary-color);
}

.job-detail-header {
    max-width: 900px;
}

.job-detail-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 24px;
    line-height: 1.2;
}

.job-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

/* Job Detail Section */
.job-detail-section {
    padding: 80px 0 60px;
}

.job-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
}

.job-detail-grid-new {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
}

.job-detail-main {
    background: white;
    border-radius: 16px;
    padding: 48px;
    box-shadow: var(--shadow-sm);
}

.job-detail-main-new {
    background: white;
    border-radius: 16px;
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.job-section {
    margin-bottom: 48px;
}

.job-section:last-child {
    margin-bottom: 0;
}

.job-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.job-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.job-list {
    list-style: none;
    padding: 0;
}

.job-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.job-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.job-paragraph {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Job Detail Sidebar */
.job-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.job-detail-sidebar-new {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.job-apply-card,
.job-info-card,
.job-share-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.job-apply-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.apply-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.apply-card-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    line-height: 1.6;
}

.btn-apply-now {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
}

.btn-apply-now:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.info-card-title,
.share-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item-full {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.info-item-full .info-value {
    text-align: left;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
}

.info-label {
    color: var(--text-gray);
    font-size: 14px;
}

.info-value {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    text-align: right;
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.share-btn {
    width: 100%;
    aspect-ratio: 1;
    border: none;
    border-radius: 8px;
    background: var(--bg-light);
    color: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition-base);
    font-size: 18px;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.share-btn.facebook:hover {
    background: #1877f2;
    color: white;
}

.share-btn.linkedin:hover {
    background: #0077b5;
    color: white;
}

.share-btn.twitter:hover {
    background: #1da1f2;
    color: white;
}

.share-btn.email:hover {
    background: var(--primary-color);
    color: white;
}

/* Application Form */
.modal-large {
    max-width: 700px;
}

.application-form {
    margin-top: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 161, 224, 0.1);
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    border: 2px dashed #d0d0d0;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-base);
    background: var(--bg-light);
}

.file-label:hover {
    border-color: var(--primary-color);
    background: rgba(0, 161, 224, 0.05);
}

.file-label i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.file-label span {
    color: var(--text-gray);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
    margin: 0;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Responsive - Recruitment Pages */
@media (max-width: 1024px) {
    .page-title {
        font-size: 42px;
    }
    
    .job-card-simple {
        padding: 24px 28px;
        gap: 24px;
    }
    
    .job-title-simple {
        font-size: 18px;
    }
    
    .job-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .job-detail-sidebar {
        position: relative;
        top: 0;
    }
    
    .job-apply-card,
    .job-info-card,
    .job-share-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .recruitment-hero {
        padding: 100px 0 50px;
    }
    
    .recruitment-hero h1 {
        font-size: 28px;
    }
    
    .recruitment-hero p {
        font-size: 15px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .job-listings-list {
        gap: 16px;
    }
    
    .job-card-simple {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        align-items: stretch;
    }
    
    .job-card-left {
        text-align: center;
    }
    
    .job-card-center {
        text-align: center;
    }
    
    .job-title-simple {
        font-size: 16px;
    }
    
    .job-card-right {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .btn-view-detail {
        width: 100%;
        justify-content: center;
    }
    
    .job-title {
        font-size: 17px;
    }
    
    .job-detail-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .job-detail-main {
        padding: 28px 20px;
    }
    
    .job-detail-title {
        font-size: 28px;
    }
    
    .job-section-title {
        font-size: 22px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .environment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .environment-card {
        padding: 20px;
    }
}

/* ============================================
   APPLICATION FORM SECTION STYLES
   ============================================ */

.application-form-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0, 161, 224, 0.02) 0%, rgba(0, 95, 178, 0.02) 100%);
}

.application-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow-md);
}

.application-form-header {
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.application-form-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 6px;
}

.application-form-subtitle {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.5;
}

.application-form-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.application-form-compact {
    display: flex;
    flex-direction: column;
}

.form-section {
    padding: 24px;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    transition: var(--transition-base);
}

.form-section:hover {
    border-left-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-section-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    margin-bottom: 4px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 12px;
}

.required {
    color: #e53e3e;
    margin-left: 2px;
}

.error-message {
    display: none;
    margin-top: 4px;
    font-size: 11px;
    color: #e53e3e;
    line-height: 1.4;
}

.error-message.show {
    display: block;
}

.form-group input.error,
.form-group input.error:focus {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 161, 224, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

/* Input with icon */
.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 16px;
    color: var(--text-gray);
    font-size: 16px;
    pointer-events: none;
}

.input-with-icon input {
    padding-left: 48px;
}

/* File upload new design */
.file-upload-new {
    position: relative;
}

.file-upload-new input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-label-new {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border: 2px dashed #d0d0d0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.file-label-new:hover {
    border-color: var(--primary-color);
    background: rgba(0, 161, 224, 0.03);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.file-upload-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-upload-icon i {
    font-size: 28px;
    color: white;
}

.file-upload-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.file-upload-title {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 15px;
}

.file-upload-hint {
    font-size: 13px;
    color: var(--text-gray);
}

.file-upload-filename {
    display: none;
    margin-top: 12px;
    padding: 8px 12px;
    background: rgba(0, 161, 224, 0.1);
    border-radius: 6px;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
}

/* Character counter */
.char-counter {
    display: block;
    text-align: right;
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 8px;
}

/* Checkbox group */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: rgba(0, 161, 224, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 161, 224, 0.2);
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-group label {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    cursor: pointer;
    margin: 0;
    font-weight: 400;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.checkbox-group a:hover {
    color: var(--accent-color);
}

/* Form footer */
.form-footer {
    margin-top: 16px;
}

.form-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 32px;
}

.btn-secondary {
    background: #e0e0e0;
    color: var(--secondary-color);
    border: none;
}

.btn-secondary:hover {
    background: #d0d0d0;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Success/Error messages */
.form-message {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.form-message.success {
    background: rgba(72, 187, 120, 0.1);
    border: 1px solid rgba(72, 187, 120, 0.3);
    color: #2f855a;
}

.form-message.error {
    background: rgba(229, 62, 62, 0.1);
    border: 1px solid rgba(229, 62, 62, 0.3);
    color: #c53030;
}

/* Compact Form Styles */
.file-upload-compact {
    position: relative;
}

.file-upload-compact input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-label-compact {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

.file-label-compact:hover {
    border-color: var(--primary-color);
    background: rgba(0, 161, 224, 0.02);
}

.file-label-compact i {
    color: var(--primary-color);
    font-size: 16px;
}

.file-text {
    flex: 1;
    color: var(--text-gray);
    font-size: 12px;
}

.file-label-compact .file-upload-filename {
    display: none;
    padding: 4px 10px;
    background: rgba(0, 161, 224, 0.1);
    border-radius: 6px;
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 500;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.checkbox-group-compact {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
}

.checkbox-group-compact input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-group-compact label {
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.5;
    cursor: pointer;
    margin: 0;
}

.checkbox-group-compact a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

.form-footer-compact {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e0e0e0;
}

.btn-submit {
    width: 100%;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Responsive - Application Form */
@media (max-width: 768px) {
    .application-form-wrapper {
        padding: 24px 16px;
    }
    
    .application-form-title {
        font-size: 22px;
    }
    
    .application-form-subtitle {
        font-size: 13px;
    }
    
    .form-section {
        padding: 20px 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-group label {
        font-size: 12px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .file-label-new {
        flex-direction: column;
        text-align: center;
    }
    
    .file-upload-icon {
        width: 50px;
        height: 50px;
    }
    
    .file-upload-icon i {
        font-size: 24px;
    }
    
    .file-label-compact {
        flex-wrap: wrap;
    }
    
    .file-label-compact .file-upload-filename {
        width: 100%;
        max-width: 100%;
        margin-top: 8px;
    }
}

/* Update existing responsive rules */
@media (max-width: 1024px) {
    .job-detail-grid-new {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .job-detail-sidebar-new {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .job-info-card,
    .job-share-card {
        flex: 1;
        min-width: 280px;
    }
}

/* ============================================
   Notification Modal
   ============================================ */
.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    padding: 20px;
}

.notification-overlay.show {
    opacity: 1;
    visibility: visible;
}

.notification-modal {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    max-width: 500px;
    width: 100%;
    padding: 0;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition-base);
    overflow: hidden;
}

.notification-overlay.show .notification-modal {
    transform: scale(1) translateY(0);
}

.notification-header {
    padding: 24px 24px 16px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.notification-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 32px;
    animation: scaleIn 0.3s ease-out;
}

.notification-icon.success {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
}

.notification-icon.error {
    background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
    color: white;
}

.notification-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px;
}

.notification-body {
    padding: 24px;
    text-align: center;
}

.notification-message {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
    white-space: pre-line;
}

.notification-footer {
    padding: 16px 24px 24px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.notification-btn {
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.notification-btn-primary {
    background: var(--primary-color);
    color: white;
}

.notification-btn-primary:hover {
    background: #0088c7;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.notification-btn-primary:active {
    transform: translateY(0);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 640px) {
    .notification-modal {
        max-width: 100%;
        margin: 20px;
    }
    
    .notification-title {
        font-size: 20px;
    }
    
    .notification-message {
        font-size: 14px;
    }
    
    .notification-icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
}
