.privacy-hero {
    padding: 150px 0 90px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    position: relative;
    text-align: center;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
}

.privacy-content {
    padding: 80px 0 100px;
    background: #f8fafc;
}

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

.privacy-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(15, 118, 242, 0.08);
    border: 1px solid rgba(15, 118, 242, 0.1);
    position: relative;
    overflow: hidden;
}

.privacy-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #1e40af 0%, #2563eb 50%, #0ea5e9 100%);
}

.privacy-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.privacy-card h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.privacy-card p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-card ul {
    margin: 0 0 1.25rem 1rem;
    padding: 0;
    color: #475569;
    line-height: 1.7;
}

.privacy-card ul li {
    margin-bottom: 0.5rem;
}

.privacy-card ul li::marker {
    color: #2563eb;
}

.privacy-meta {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    background: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(15, 118, 242, 0.08);
    border: 1px solid rgba(15, 118, 242, 0.08);
}

.privacy-meta-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.35rem;
}

.privacy-meta-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
}

.privacy-meta-value a {
    color: #2563eb;
    text-decoration: none;
}

.privacy-meta-value a:hover,
.privacy-meta-value a:focus {
    text-decoration: underline;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Prevent horizontal scroll on mobile */
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #0f172a;
    background-color: #ffffff;
    /* Prevent horizontal scroll on mobile */
    overflow-x: hidden;
    width: 100%;
}

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    z-index: 1500;
    background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 50%, #0ea5e9 100%);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    transition: width 0.12s ease-out;
}

/* Skip to main content link for accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
    border-radius: 0 0 10px 0;
    transition: top 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.skip-link:focus {
    top: 0;
    outline: 3px solid #06b6d4;
    outline-offset: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* Ensure container doesn't cause overflow */
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.nav-logo a {
    text-decoration: none;
}

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

.nav-link {
    color: #0f172a;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0ea5e9 0%, #06b6d4 100%);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: #0ea5e9;
    background-color: rgba(14, 165, 233, 0.08);
}

.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.active::after {
    width: calc(100% - 2rem);
}

.nav-link:focus {
    outline: 2px solid #0ea5e9;
    outline-offset: 2px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #0f172a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 160px;
    padding: 0.9rem 2.2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    box-shadow: 0 20px 35px rgba(15, 118, 242, 0.25);
    white-space: nowrap;
}

.hero-buttons .btn i {
    font-size: 1.05rem;
}

.hero-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    min-width: 120px;
    max-width: 140px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-card:nth-child(1) {
    top: 20px;
    left: 20px;
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(2) {
    top: 20px;
    right: 20px;
    animation: float 6s ease-in-out infinite 1.5s;
}

.floating-card:nth-child(3) {
    bottom: 20px;
    left: 20px;
    animation: float 6s ease-in-out infinite 3s;
}

.floating-card:nth-child(4) {
    bottom: 20px;
    right: 20px;
    animation: float 6s ease-in-out infinite 4.5s;
}

.floating-card i {
    font-size: 2rem;
    color: #0ea5e9;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.4));
}

.floating-card h3 {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
    font-weight: 600;
    border: none;
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #06b6d4 0%, #14b8a6 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4);
}

.btn-primary:focus {
    outline: 2px solid #06b6d4;
    outline-offset: 2px;
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-primary:disabled:hover {
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5);
    outline: 2px solid rgba(255, 255, 255, 0.3);
    outline-offset: 2px;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.section-header > div {
    width: 100%;
}

.section-header #add-job-btn {
    margin-top: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.services-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

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

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(67, 56, 202, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(67, 56, 202, 0.1);
    opacity: 0;
    transform: translateY(20px);
}

.service-card.loading {
    opacity: 1;
    transform: translateY(0);
    animation: cardSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.12);
    border-color: rgba(14, 165, 233, 0.25);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.25);
}

.service-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: bold;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    transform: translateZ(0);
    backface-visibility: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.about-text {
    transform: translateZ(0);
    backface-visibility: hidden;
    opacity: 1;
    visibility: visible;
}

.about-description {
    font-size: 1.1rem;
    color: #0f172a;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 1;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

/* Ensure about description is always visible */
.about-description {
    opacity: 1 !important;
    visibility: visible !important;
    color: #0f172a !important;
}

/* Fallback if animation doesn't trigger */
.about-description:not(:animated) {
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.stat-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    min-height: 180px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    isolation: isolate;
    border: 2px solid rgba(14, 165, 233, 0.15);
    position: relative;
    overflow: hidden;
    animation: statItemFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes statItemFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Stagger animation delays for stat items */
.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.08), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item.animate-in,
.stat-item.ready {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.02) translateZ(0);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.2);
    border-color: rgba(14, 165, 233, 0.3);
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    line-height: 1.2;
    animation: numberPulse 2s ease-in-out infinite 2s;
    transform-origin: center;
    letter-spacing: -0.02em;
    min-height: 4rem;
    text-align: center;
}

.stat-item h3.infinity-symbol {
    font-size: 4rem;
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: infinityGlow 3s ease-in-out infinite;
}

@keyframes infinityGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(14, 165, 233, 0.5));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(14, 165, 233, 0.8));
        transform: scale(1.1);
    }
}

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

.stat-item h3[data-count] {
    transform: translateZ(0) scale(1);
    backface-visibility: visible;
    will-change: transform;
    contain: layout style paint;
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: transparent !important;
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 50%, #06b6d4 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: counterPopIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, numberPulse 2s ease-in-out infinite 2.5s;
    animation-delay: 0.8s, 2.5s;
    min-height: 4rem;
    text-align: center;
    width: 100%;
}

/* Special animation for year values */
.stat-item h3[data-count][data-is-year="true"] {
    animation: yearFadeIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, yearPulse 2s ease-in-out infinite 1.5s;
    animation-delay: 0.6s, 1.5s;
}

@keyframes yearFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }
    60% {
        transform: scale(1.1) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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

@keyframes counterPopIn {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }
    60% {
        transform: scale(1.1) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.stat-item h3[data-count].animating {
    animation: none;
    opacity: 1;
    transform: scale(1);
}

/* Stagger animation delays for stat items */
.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-item p {
    color: #0f172a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-detail {
    font-size: 0.85rem;
    color: #64748b;
}

.about-visual {
    transform: translateZ(0);
    backface-visibility: hidden;
    opacity: 1;
    visibility: visible;
}

.company-values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
    justify-content: center;
}

.value-highlight {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.08);
    border: 2px solid rgba(14, 165, 233, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    opacity: 0;
    transform: translateX(30px);
    animation: valueSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.value-highlight:nth-child(1) {
    animation-delay: 0.2s;
}

.value-highlight:nth-child(2) {
    animation-delay: 0.4s;
}

.value-highlight:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes valueSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.value-highlight:hover {
    transform: translateY(-5px) translateX(0);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.25);
}

.value-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.25);
    transition: transform 0.3s ease;
}

.value-highlight:hover .value-icon-large {
    transform: scale(1.1) rotate(5deg);
}

.value-icon-large i {
    font-size: 2.5rem;
    color: #ffffff;
}

.value-highlight h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    background: none;
    -webkit-text-fill-color: #0f172a;
}

.value-highlight p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@media (max-width: 768px) {
    .tech-stack {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .tech-stack {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tech-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0) translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
    border: 2px solid rgba(14, 165, 233, 0.1);
    animation: techItemFadeIn 0.6s ease forwards;
}

.tech-item.loading {
    opacity: 1;
    transform: translateY(0) translateZ(0);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes techItemFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-item:hover {
    transform: translateY(-8px) scale(1.05) translateZ(0);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.2);
    border-color: rgba(14, 165, 233, 0.3);
}

.tech-item i {
    font-size: 3rem;
    color: #0ea5e9;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.tech-item:hover i {
    transform: scale(1.1) translateZ(0);
}

.tech-item span {
    font-size: 1rem;
    color: #0f172a;
    font-weight: 500;
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Ensure tech items are always visible */
.tech-item i,
.tech-item span {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.25);
}

.contact-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #64748b;
}

/* Forms */
.contact-form {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    /* Mobile-friendly: prevent zoom on iOS */
    font-size: 16px;
    background-color: #ffffff;
}

/* Prevent zoom on input focus for iOS */
@media (max-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px !important;
    }
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
    background-color: #ffffff;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
    animation: shake 0.3s ease;
}

.form-group input.success,
.form-group textarea.success {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Form rows stack on mobile */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0ea5e9;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
}

.form-privacy-note {
    font-size: 0.85rem;
    color: #64748b;
    margin: 1rem 0 1.5rem;
    line-height: 1.6;
}

.form-privacy-note a {
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
}

.form-privacy-note a:hover,
.form-privacy-note a:focus {
    text-decoration: underline;
}

.success-privacy-note {
    font-size: 0.85rem;
    color: #475569;
    margin: 1rem 0;
    line-height: 1.5;
}

.success-privacy-note a {
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
}

.success-privacy-note a:hover,
.success-privacy-note a:focus {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #0f172a;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #94a3b8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #0ea5e9;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.25);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 0.5rem;
        border-radius: 6px;
        transition: background 0.3s ease;
    }

    .nav-toggle:hover,
    .nav-toggle:focus {
        background: #f8fafc;
        outline: 2px solid #0ea5e9;
        outline-offset: 2px;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-link {
        padding: 1rem;
        width: 100%;
        display: block;
        margin: 0;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-visual {
        height: 300px;
        order: -1;
    }

    .floating-card {
        padding: 1rem;
        min-width: 90px;
        max-width: 110px;
        border-radius: 12px;
    }

    .floating-card:nth-child(1) {
        top: 10px;
        left: 10px;
    }

    .floating-card:nth-child(2) {
        top: 10px;
        right: 10px;
    }

    .floating-card:nth-child(3) {
        bottom: 10px;
        left: 10px;
    }

    .floating-card:nth-child(4) {
        bottom: 10px;
        right: 10px;
    }

    .floating-card i {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }

    .floating-card h3 {
        font-size: 0.8rem;
    }

    .services {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .about {
        padding: 80px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-detail {
        font-size: 0.75rem;
    }

    .tech-stack {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .company-values {
        gap: 1.5rem;
    }
    
    .value-highlight {
        padding: 1.5rem;
    }
    
    .value-icon-large {
        width: 70px;
        height: 70px;
    }
    
    .value-icon-large i {
        font-size: 2rem;
    }
    
    .value-highlight h3 {
        font-size: 1.3rem;
    }
    
    .value-highlight p {
        font-size: 0.95rem;
    }

    .contact {
        padding: 80px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto 0.5rem;
        padding: 0.9rem 1.5rem;
    }

    .privacy-content {
        padding: 60px 0 80px;
    }

    .privacy-card {
        padding: 2rem;
    }

    .privacy-meta {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .positions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .file-upload-area {
        padding: 1.5rem;
    }
    
    .admin-btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-methods {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-visual {
        height: 250px;
    }

    .floating-card {
        padding: 0.75rem;
        min-width: 70px;
        max-width: 90px;
        border-radius: 10px;
    }

    .floating-card:nth-child(1) {
        top: 5px;
        left: 5px;
    }

    .floating-card:nth-child(2) {
        top: 5px;
        right: 5px;
    }

    .floating-card:nth-child(3) {
        bottom: 5px;
        left: 5px;
    }

    .floating-card:nth-child(4) {
        bottom: 5px;
        right: 5px;
    }

    .floating-card i {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .floating-card h3 {
        font-size: 0.7rem;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.95rem;
        /* Ensure touch-friendly size (minimum 44px height) */
        min-height: 44px;
        min-width: 120px;
    }

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }

    .services {
        padding: 60px 0;
    }

    .services-grid {
        gap: 1rem;
    }

    .about {
        padding: 60px 0;
    }

    .contact {
        padding: 60px 0;
    }

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

    .tech-stack {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .tech-item {
        padding: 1.5rem;
        /* Ensure minimum touch target */
        min-height: 120px;
    }

    .tech-item i {
        font-size: 2rem;
    }
    
    .tech-item span {
        font-size: 0.9rem;
    }
    
    .stat-item {
        padding: 1.5rem;
        min-height: 160px;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto 0.5rem;
        padding: 0.9rem 1.5rem;
    }
    
    .section-description {
        font-size: 0.9rem;
        padding: 0;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling and animations */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .contact-item {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
    }
}

/* Page-specific hero sections */
.about-hero,
.services-hero,
.career-hero,
.contact-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before,
.services-hero::before,
.career-hero::before,
.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
}

.about-hero .hero-title,
.services-hero .hero-title,
.career-hero .hero-title,
.contact-hero .hero-title {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.about-hero .hero-description,
.services-hero .hero-description,
.career-hero .hero-description,
.contact-hero .hero-description {
    color: rgba(255, 255, 255, 0.95);
}

/* Company Story Section */
.company-story {
    padding: 80px 0;
    background: #ffffff;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.story-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    color: #ffffff;
    width: 100%;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-placeholder h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Mission & Values */
.mission-values {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

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

.value-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.25);
}

.value-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: #ffffff;
}

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

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.25);
}

.feature-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-content .btn {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.cta-content .btn:hover {
    background: linear-gradient(135deg, #06b6d4 0%, #14b8a6 100%);
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4);
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.25);
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Why Choose Services Section */
.why-choose-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

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

.advantage-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.08);
    border: 2px solid rgba(14, 165, 233, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.05), transparent);
    transition: left 0.6s ease;
}

.advantage-card:hover::before {
    left: 100%;
}

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.2);
    border-color: rgba(14, 165, 233, 0.3);
}

.advantage-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.35);
}

.advantage-icon i {
    font-size: 2.5rem;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-style: normal;
}

.advantage-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    z-index: 3;
}

.advantage-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    text-align: center;
}

.advantage-card p {
    color: #64748b;
    line-height: 1.7;
    text-align: center;
    font-size: 1rem;
}

/* Career Page Styles - hero styling is already defined above in page-specific hero sections */

.why-work-with-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

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

.benefit-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(14, 165, 233, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.25);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.25);
}

.benefit-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

.open-positions {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

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

/* Responsive positions grid */
@media (max-width: 768px) {
    .positions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.position-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem;
    transition: box-shadow 0.3s ease, border-color 0.3s ease !important;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transform: none !important;
    animation: none !important;
    will-change: box-shadow, border-color;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.position-card:hover {
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.12) !important;
    border-color: rgba(14, 165, 233, 0.3) !important;
    transform: none !important;
    translate: none !important;
    scale: none !important;
    rotate: none !important;
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #f1f5f9;
}

.position-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin: 0;
    flex: 1;
}

.position-type {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.2);
}

.position-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #f1f5f9;
}

.position-details p {
    color: #475569;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.position-details i {
    color: #0ea5e9;
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

.position-date {
    color: #64748b !important;
    font-size: 0.875rem !important;
    margin: 0 !important;
    padding-top: 0.5rem;
}

.position-description {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.position-responsibilities,
.position-required-skills,
.position-preferred-skills {
    margin: 0 !important;
    padding-top: 0.5rem;
}

.position-responsibilities strong,
.position-required-skills strong,
.position-preferred-skills strong {
    color: #0f172a;
    font-size: 1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.875rem !important;
}

.position-responsibilities ul,
.position-required-skills ul,
.position-preferred-skills ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.position-responsibilities li,
.position-required-skills li,
.position-preferred-skills li {
    padding: 0 !important;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.75rem !important;
}

.position-responsibilities li i,
.position-required-skills li i,
.position-preferred-skills li i {
    position: absolute;
    left: 0;
    top: 0.25rem;
}

.position-work-style {
    margin: 0 !important;
    padding: 1.25rem !important;
    background: #f8fafc !important;
    border-radius: 12px !important;
    border-left: 4px solid #06b6d4 !important;
}

.position-work-style strong {
    color: #0f172a;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem !important;
}

.position-work-style p {
    color: #475569;
    margin: 0 !important;
    font-size: 0.95rem !important;
    line-height: 1.6;
}

.position-skills {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin: 0;
}

.skill-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.skill-tag:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

.position-benefits {
    padding: 1rem 0;
    border-top: 1px solid #f1f5f9;
    margin-top: 0.5rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

.position-benefits strong {
    color: #0f172a;
    font-weight: 600;
    font-size: 0.95rem;
}

.apply-btn {
    margin-top: 1.5rem;
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: none;
    letter-spacing: 0.01em;
}

.apply-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.apply-btn:hover::before {
    left: 100%;
}

.apply-btn:hover {
    background: linear-gradient(135deg, #06b6d4 0%, #14b8a6 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.5);
}

.apply-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.apply-btn:focus {
    outline: 3px solid rgba(14, 165, 233, 0.4);
    outline-offset: 2px;
}

.apply-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.apply-btn:hover i {
    transform: translateX(3px);
}

.admin-controls {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
}

.btn-edit,
.btn-delete {
    width: 35px;
    height: 35px;
    padding: 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-edit {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: #ffffff;
}

.btn-delete {
    background: #ef4444;
    color: #ffffff;
}

.no-jobs-message {
    text-align: center;
    padding: 4rem 2rem;
}

.no-jobs-message i {
    font-size: 4rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.no-jobs-message h3 {
    font-size: 1.8rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.no-jobs-message p {
    color: #64748b;
    margin-bottom: 2rem;
}

.application-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal[style*="flex"],
.modal[style*="block"] {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
}

.close {
    color: #64748b;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 6px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover,
.close:focus {
    color: #0f172a;
    background: #f1f5f9;
    outline: 2px solid #4338ca;
    outline-offset: 2px;
}

.job-form,
.application-form {
    padding: 2rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Contact Page Specific - already defined above */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info > h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.25);
}

.method-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.method-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.method-details p {
    color: #64748b;
    margin-bottom: 0.25rem;
}

.contact-form {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

/* Contact Page Specific */
.contact-content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
}

/* File Upload */
.file-upload-area {
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    position: relative;
}

.file-upload-area:hover {
    border-color: #0ea5e9;
    background: #f0f9ff;
}

.file-upload-area:focus-within {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
    outline: none;
}

.file-upload-area.dragover {
    border-color: #0ea5e9;
    background: #f0f9ff;
    border-style: solid;
    transform: scale(1.02);
}

.file-validation-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    display: none;
    animation: fadeInUp 0.3s ease;
}

.file-validation-message.show {
    display: block;
}

.file-validation-message.success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.file-validation-message.error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

.file-upload-content i {
    font-size: 3rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.file-upload-content p {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.file-browse {
    color: #0ea5e9;
    font-weight: 600;
    text-decoration: underline;
}

.file-list {
    margin-top: 1rem;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.3s ease;
    transition: all 0.3s ease;
}

.file-item:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.file-item .file-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.file-item .file-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.25rem;
}

.file-item .file-icon.pdf {
    background: #fee2e2;
    color: #dc2626;
}

.file-item .file-icon.doc,
.file-item .file-icon.docx {
    background: #dbeafe;
    color: #2563eb;
}

.file-item .file-icon.txt {
    background: #f3f4f6;
    color: #4b5563;
}

.file-item .file-icon.jpg,
.file-item .file-icon.jpeg,
.file-item .file-icon.png {
    background: #e0f2fe;
    color: #0ea5e9;
}

.file-item .file-icon.zip {
    background: #fed7aa;
    color: #ea580c;
}

.file-item .file-details h4 {
    font-size: 0.9rem;
    color: #0f172a;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.file-item .file-details p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
}

.file-item .file-actions {
    display: flex;
    gap: 0.5rem;
}

.file-item .file-remove {
    background: transparent;
    border: none;
    color: #ef4444;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 1.1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-item .file-remove:hover,
.file-item .file-remove:focus {
    background: #fee2e2;
    color: #991b1b;
    outline: 2px solid #ef4444;
    outline-offset: 2px;
}

/* Removed duplicate file-item styles - using file-info structure instead */

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
}

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

.faq-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #ffffff;
}

.map-placeholder {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    color: #64748b;
}

.map-content i {
    font-size: 4rem;
    color: #0ea5e9;
    margin-bottom: 1rem;
}

.map-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
}

.map-content p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.map-content .btn {
    margin-top: 1.5rem;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .story-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 1rem;
    }
    
    .position-card {
        padding: 1.75rem;
        gap: 1.25rem;
    }
    
    .position-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding-bottom: 1rem;
    }
    
    .position-header h3 {
        font-size: 1.25rem;
    }
    
    .position-details {
        gap: 0.625rem;
        padding-bottom: 1rem;
    }
    
    .position-description {
        font-size: 0.95rem;
    }
    
    .position-responsibilities strong,
    .position-required-skills strong,
    .position-preferred-skills strong {
        font-size: 0.95rem;
        margin-bottom: 0.75rem !important;
    }
    
    .position-responsibilities li,
    .position-required-skills li,
    .position-preferred-skills li {
        font-size: 0.9rem;
    }
    
    .position-work-style {
        padding: 1rem !important;
    }
    
    .skill-tag {
        padding: 0.4rem 0.875rem;
        font-size: 0.8125rem;
    }
    
    .tech-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantage-card {
        padding: 2rem;
    }
    
    .advantage-icon {
        width: 70px;
        height: 70px;
    }
    
    .advantage-icon i {
        font-size: 2rem;
    }
    
    .advantage-number {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto 0.5rem;
        padding: 0.85rem 1.4rem;
        font-size: 0.95rem;
    }
    
    .file-upload-area {
        padding: 1.5rem;
    }
    
    .admin-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero .hero-title,
    .services-hero .hero-title,
    .career-hero .hero-title,
    .contact-hero .hero-title {
        font-size: 2rem;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .benefits-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid,
    .positions-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .map-placeholder {
        padding: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto 0.5rem;
        padding: 0.85rem 1.3rem;
        font-size: 0.95rem;
    }

    .privacy-card {
        padding: 1.75rem;
    }

    .privacy-card h2 {
        font-size: 1.25rem;
    }

    .privacy-card ul {
        margin-left: 0.75rem;
    }
    
    .section-description {
        font-size: 0.9rem;
        padding: 0;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 2% auto;
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .application-form,
    .job-form {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .position-card .admin-controls {
        position: static;
        display: flex;
        justify-content: flex-end;
        margin-top: 1rem;
    }
}

/* Notifications */
.notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 3000;
    max-width: 400px;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(120%);
    }
    to {
        transform: translateX(0);
    }
}

.notification.visible {
    transform: translateX(0);
}

@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-150%);
    }
    
    .notification.visible {
        transform: translateY(0);
    }
    
    @keyframes slideInRight {
        from {
            transform: translateY(-150%);
        }
        to {
            transform: translateY(0);
        }
    }
}

.notification-success {
    border-left: 4px solid #10b981;
}

.notification-error {
    border-left: 4px solid #ef4444;
}

.notification-info {
    border-left: 4px solid #3b82f6;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notification-message {
    color: #0f172a;
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.notification-close:hover {
    color: #0f172a;
}

/* Form Validation */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.field-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 0.3s ease;
}

.field-error::before {
    content: '⚠';
    font-size: 1rem;
}

.field-success {
    color: #10b981;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.field-success::before {
    content: '✓';
    font-weight: bold;
}

/* Enhanced Animations */
.animate-in {
    animation: fadeInUpScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

@keyframes fadeInUpScale {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Admin access is completely hidden - use keyboard shortcut Ctrl+Shift+A */
