/* =========================================
   MKM PROMOTIONS - BASE STYLES
   Complete Website Stylesheet
   ========================================= */

/* ===================== CSS Reset & Base ===================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #334155;
    background-color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul, ol {
    list-style: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #120001;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
    color: #64748b;
}

/* ===================== Container ===================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================== Sections ===================== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: #e50108;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #6baa04, #8fd41a);
    transform: translateY(-50%);
}

.text-center .section-tag::before {
    display: none;
}

.text-center .section-tag {
    padding-left: 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #120001;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
}

.text-center .section-subtitle {
    margin: 0 auto;
}

.section-text {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.light-bg {
    background: #f8fafc;
}

/* ===================== Text Gradient ===================== */
.text-gradient {
    background: linear-gradient(135deg, #e50108 0%, #6baa04 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================== Buttons ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #e50108 0%, #b30106 100%);
    color: #fff;
    border-color: #e50108;
    box-shadow: 0 4px 15px rgba(229, 1, 8, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 1, 8, 0.4);
}

.btn-outline {
    background: transparent;
    color: #e50108;
    border: 2px solid #e50108;
}

.btn-outline:hover {
    background: #e50108;
    color: #fff;
    transform: translateY(-3px);
}

/* ===================== Grids ===================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===================== Benefit Cards ===================== */
.benefit-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(18, 0, 1, 0.12);
    border-color: rgba(229, 1, 8, 0.2);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6baa04 0%, #4a7a03 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.75rem;
    margin: 0 auto 20px;
    transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #120001;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ===================== About Section ===================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper-3d {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.image-placeholder {
    background: linear-gradient(135deg, #e50108, #120001);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 4rem;
    border-radius: 20px;
    overflow: hidden;
}

.image-placeholder.large {
    height: 400px;
}

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

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #e50108, #b30106);
    color: #fff;
    padding: 20px 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(229, 1, 8, 0.3);
}

.about-badge i {
    font-size: 2rem;
}

.badge-title {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
}

.badge-text {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #6baa04, #4a7a03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.feature-item span {
    color: #334155;
    font-weight: 500;
    font-size: 0.95rem;
}

/* ===================== Service Cards ===================== */
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6baa04, #8fd41a);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(18, 0, 1, 0.12);
    border-color: rgba(229, 1, 8, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6baa04 0%, #4a7a03 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #120001;
    margin-bottom: 12px;
}

.service-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e50108;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #b30106;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===================== Stats Section ===================== */
.stats-section {
    background: linear-gradient(135deg, #120001 0%, #2a1011 100%);
    position: relative;
    padding: 80px 0;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e50108 0%, #b30106 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e50108;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ===================== Values Section ===================== */
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.values-list {
    margin-top: 30px;
}

.value-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
}

.value-item:last-child {
    border-bottom: none;
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6baa04 0%, #4a7a03 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #120001;
    margin-bottom: 5px;
}

.value-item p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.values-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.value-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
}

.value-card:first-child {
    grid-column: 1 / -1;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(18, 0, 1, 0.1);
    border-color: #e50108;
}

.value-card i {
    font-size: 2rem;
    color: #6baa04;
    margin-bottom: 15px;
}

.value-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #120001;
    margin-bottom: 10px;
}

.value-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* ===================== CTA Section ===================== */
.cta-section {
    background: linear-gradient(135deg, #6baa04 0%, #4a7a03 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 600px;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: #fff;
    color: #4a7a03;
    border-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn-primary:hover {
    background: #f8fafc;
}

.cta-buttons .btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.cta-visual {
    flex-shrink: 0;
}

.cta-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
}

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

/* ===================== Page Header ===================== */
.page-header {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #e50108 0%, #120001 100%);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span:last-child {
    color: #fff;
    font-weight: 500;
}

/* ===================== Team Cards ===================== */
.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    perspective: 1000px;
    height: 380px;
}

.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.team-card:hover .team-card-inner {
    transform: rotateY(180deg);
}

.team-card-front,
.team-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.team-card-front {
    background: #fff;
}

.team-card-front .team-image {
    width: 100%;
    height: 100%;
}

.team-card-front .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card-front .team-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e50108, #120001);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 5rem;
}

.team-card:hover .team-card-front .team-image img {
    transform: scale(1.05);
}

.team-card-back {
    background: linear-gradient(135deg, #120001 0%, #2a1011 100%);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
}

.team-card-back .team-info {
    padding: 0;
    text-align: center;
    margin-bottom: 25px;
}

.team-card-back .team-info h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.team-card-back .team-info .team-role {
    color: #6baa04;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: block;
}

.team-card-back .team-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.team-card-back .team-social {
    display: flex;
    gap: 12px;
    justify-content: center;
    position: static;
    transform: none;
    padding: 0;
    background: none;
}

.team-card-back .team-social a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-card-back .team-social a:hover {
    background: #e50108;
    border-color: #e50108;
    transform: translateY(-5px);
}

/* Legacy team card styles (non-flip) */
.team-card.no-flip {
    perspective: none;
    height: auto;
}

.team-card.no-flip:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(18, 0, 1, 0.12);
}

.team-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.team-image .image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.team-image .image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(to top, rgba(18, 0, 1, 0.8), transparent);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.team-card.no-flip:hover .team-social {
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: #e50108;
    transform: translateY(-3px);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #120001;
    margin-bottom: 5px;
}

.team-role {
    color: #6baa04;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.team-info p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ===================== Gallery Items ===================== */
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(229, 1, 8, 0.9), rgba(18, 0, 1, 0.9));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.gallery-overlay span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===================== Process Cards ===================== */
.process-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(18, 0, 1, 0.1);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid #e50108;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #e50108;
    font-size: 0.9rem;
}

.process-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6baa04 0%, #4a7a03 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin: 15px auto 20px;
}

.process-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #120001;
    margin-bottom: 12px;
}

.process-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ===================== Mission Cards ===================== */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mission-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(18, 0, 1, 0.1);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e50108 0%, #b30106 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 25px;
}

.mission-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #120001;
    margin-bottom: 15px;
}

.mission-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.mission-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #475569;
    font-size: 0.95rem;
}

.mission-list i {
    color: #6baa04;
}

/* ===================== Testimonials ===================== */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(18, 0, 1, 0.1);
    border-color: #e50108;
}

.testimonial-quote i {
    font-size: 2rem;
    color: #e50108;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e50108, #b30106);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #120001;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.85rem;
    color: #64748b;
}

/* ===================== Position Cards ===================== */
.position-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(18, 0, 1, 0.1);
    border-color: #6baa04;
}

.position-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.position-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e50108 0%, #b30106 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
}

.position-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #120001;
    margin-bottom: 5px;
}

.position-type {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(107, 170, 4, 0.1);
    color: #6baa04;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.position-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 15px 0;
}

/* ===================== Forms ===================== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #334155;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-control:focus {
    outline: none;
    border-color: #6baa04;
    box-shadow: 0 0 0 4px rgba(107, 170, 4, 0.15);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.required {
    color: #e50108;
}

/* ===================== Sidebar ===================== */
.sidebar-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    margin-bottom: 25px;
}

.sidebar-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e50108 0%, #b30106 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #475569;
    font-size: 0.95rem;
}

.benefits-list i {
    color: #6baa04;
}

.contact-card {
    background: linear-gradient(135deg, #120001 0%, #2a1011 100%);
    border: none;
}

.contact-card h4,
.contact-card p {
    color: #fff;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    color: #6baa04;
}

/* ===================== Industry Cards ===================== */
.industry-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(18, 0, 1, 0.1);
    border-color: #e50108;
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6baa04 0%, #4a7a03 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

/* ===================== Culture Cards ===================== */
.culture-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
}

.culture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(18, 0, 1, 0.1);
    border-color: #e50108;
}

.culture-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6baa04 0%, #4a7a03 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

/* ===================== Preloader ===================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #e2e8f0;
    border-top-color: #e50108;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ===================== Scroll to Top ===================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e50108 0%, #b30106 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(229, 1, 8, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: linear-gradient(135deg, #6baa04 0%, #4a7a03 100%);
    transform: translateY(-5px);
}

/* ===================== Animations ===================== */
.animate {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate.visible {
    opacity: 1;
}

.animate.fade-up {
    transform: translateY(60px);
}

.animate.fade-up.visible {
    transform: translateY(0);
}

.animate.fade-down {
    transform: translateY(-60px);
}

.animate.fade-down.visible {
    transform: translateY(0);
}

.animate.fade-left {
    transform: translateX(60px);
}

.animate.fade-left.visible {
    transform: translateX(0);
}

.animate.fade-right {
    transform: translateX(-60px);
}

.animate.fade-right.visible {
    transform: translateX(0);
}

.animate.scale-in {
    transform: scale(0.8);
}

.animate.scale-in.visible {
    transform: scale(1);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ===================== Responsive Design ===================== */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid,
    .leadership-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .section {
        padding: 80px 0;
    }
    
    .about-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-grid,
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid,
    .process-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .services-grid,
    .stats-grid,
    .process-grid,
    .team-grid,
    .leadership-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .cta-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .page-header {
        padding: 130px 0 60px;
    }
    
    .values-cards {
        grid-template-columns: 1fr;
    }
    
    .value-card:first-child {
        grid-column: auto;
    }
    
    /* Mobile flip cards */
    .team-card {
        height: 350px;
    }
    
    .team-card-back {
        padding: 25px 20px;
    }
    
    .team-card-back .team-info h3 {
        font-size: 1.25rem;
    }
    
    .team-card-back .team-info p {
        font-size: 0.85rem;
    }
    
    .team-card-back .team-social a {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}