/* ============ CSS VARIABLES ============ */
:root {
    --primary-navy: #1e3a5f;
    --primary-navy-light: #2a4a73;
    --primary-navy-medium: #3d5a80;
    --accent-red: #b22234;
    --accent-red-light: #c93545;
    --accent-red-dark: #8b1a29;
    --light-bg: #f8fafc;
    --lighter-bg: #fafbfd;
    --text-dark: #1e293b;
    --text-medium: #475569;
    --text-light: #ffffff;
    --border-light: #e2e8f0;
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 60px rgba(0, 0, 0, 0.12);
    --shadow-red: 0 10px 30px rgba(196, 30, 58, 0.2);
    --shadow-navy: 0 10px 30px rgba(15, 29, 74, 0.15);
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============ BASE STYLES ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--lighter-bg);
    -webkit-font-smoothing: antialiased;
}

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-red-light));
    z-index: 9999;
}

/* ============ PRELOADER ============ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 30px;
}
.preloader-logo span { color: var(--accent-red); }
.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(30, 58, 95, 0.1);
    border-top-color: var(--accent-red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ NAVIGATION ============ */
.navbar {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
    transition: all 0.4s ease;
}
.navbar.scrolled {
    padding: 0.4rem 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
}
.navbar-brand img { height: 90px; transition: transform 0.3s ease; filter: brightness(1); }
.navbar-brand:hover img { transform: scale(1.03); }
.navbar.scrolled .navbar-brand img { height: 55px; }
.nav-link {
    color: var(--primary-navy) !important;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin: 0 0.2rem;
    padding: 0.6rem 1.1rem !important;
    border-radius: 8px;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nav-link:hover::after { width: 60%; }
.nav-link:hover { background: rgba(30, 58, 95, 0.08); color: var(--accent-red) !important; }
.nav-link.active { color: var(--accent-red) !important; }
.nav-link.active::after { width: 60%; }

/* ============ HERO CAROUSEL ============ */
.hero-carousel-wrapper {
    height: 550px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    top: 0;
    left: 0;
}
.carousel-slide.active { opacity: 1; z-index: 2; }
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
    transition: transform 8s ease;
}
.carousel-slide.active img { transform: scale(1.08); }
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 29, 74, 0.85) 0%, rgba(15, 29, 74, 0.5) 40%, transparent 100%);
    display: flex;
    align-items: center;
    padding: 0 8%;
    z-index: 5;
}
.carousel-caption-custom {
    color: white;
    max-width: 650px;
}
.carousel-slide.active .carousel-caption-custom {
    animation: fadeInUp 0.8s ease forwards;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.carousel-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 30, 58, 0.9);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.carousel-caption-custom h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1.1;
}
.carousel-caption-custom p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 500px;
}
.carousel-cta {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.carousel-btn-primary {
    background: var(--accent-red);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--accent-red);
}
.carousel-btn-primary:hover {
    background: var(--accent-red-dark);
    border-color: var(--accent-red-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
    color: white;
}
.carousel-btn-secondary {
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255,255,255,0.4);
}
.carousel-btn-secondary:hover {
    background: white;
    color: var(--primary-navy);
    border-color: white;
    transform: translateY(-3px);
}
.carousel-controls {
    position: absolute;
    bottom: 50px;
    right: 8%;
    z-index: 10;
    display: flex;
    gap: 12px;
}
.carousel-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-btn:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: scale(1.1);
}
.carousel-dots {
    position: absolute;
    bottom: 50px;
    left: 8%;
    display: flex;
    gap: 10px;
    z-index: 10;
}
.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}
.carousel-dot:hover { background: rgba(255, 255, 255, 0.6); }
.carousel-dot.active {
    background: var(--accent-red);
    transform: scale(1.3);
    border-color: white;
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-scale.active { opacity: 1; transform: scale(1); }

[data-stagger] > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}
[data-stagger].active > *:nth-child(1) { transition-delay: 0.05s; }
[data-stagger].active > *:nth-child(2) { transition-delay: 0.1s; }
[data-stagger].active > *:nth-child(3) { transition-delay: 0.15s; }
[data-stagger].active > *:nth-child(4) { transition-delay: 0.2s; }
[data-stagger].active > *:nth-child(5) { transition-delay: 0.25s; }
[data-stagger].active > *:nth-child(6) { transition-delay: 0.3s; }
[data-stagger].active > * { opacity: 1; transform: translateY(0); }

/* ============ SECTION STYLES ============ */
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.05));
    color: var(--accent-red);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(196, 30, 58, 0.15);
}
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-navy);
    letter-spacing: -1.5px;
    line-height: 1.2;
    margin-bottom: 15px;
}
.section-title-light { color: white; }
.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}
.section-subtitle-light { color: rgba(255, 255, 255, 0.8); }
.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-red-light));
    border-radius: 2px;
    margin: 20px auto 0;
}
.title-underline-left { margin: 20px 0 0 0; }

/* ============ ABOUT SECTION ============ */
.about-section {
    padding: 120px 0;
    background: white;
    position: relative;
    overflow: hidden;
}
.about-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}
.about-text {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 25px;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.stat-item {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}
.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(196, 30, 58, 0.2);
}
.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-red);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}
.vision-card {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-light));
    border-radius: 24px;
    padding: 50px 40px;
    color: white;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.vision-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.2) 0%, transparent 60%);
}
.vision-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-red-light));
}
.vision-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 25px;
    position: relative;
}
.vision-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}
.vision-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.9;
    position: relative;
}

/* ============ FEATURES SECTION ============ */
.features-section {
    padding: 120px 0;
    background: var(--light-bg);
}
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-red-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.feature-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-red);
}
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}
.feature-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 15px;
}
.feature-text {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============ PRODUCTS SECTION ============ */
.products-section {
    padding: 120px 0;
    background: white;
}
.product-category-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
}
.product-category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-red);
    background: white;
}
.product-category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    box-shadow: var(--shadow-red);
}
.product-category-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
}
.product-category-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin: 0;
}

/* ============ VIEW ALL BUTTON ============ */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-red);
}
.btn-view-all:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(196, 30, 58, 0.3);
    color: white;
}
.btn-view-all-light {
    background: white;
    color: var(--primary-navy);
    box-shadow: var(--shadow-lg);
}
.btn-view-all-light:hover {
    background: var(--primary-navy);
    color: white;
    box-shadow: var(--shadow-navy);
}

/* ============ SERVICES SECTION ============ */
.services-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-light));
    position: relative;
    overflow: hidden;
}
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(196, 30, 58, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
}
.services-section .container { position: relative; z-index: 2; }
.services-section .feature-card { background: rgba(255, 255, 255, 0.98); }

/* ============ TEAM SECTION ============ */
.team-section {
    padding: 120px 0;
    background: var(--light-bg);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}
.team-member-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--border-light);
}
.team-member-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.team-member-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-light));
    overflow: hidden;
    position: relative;
}
.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.team-member-card:hover .team-member-image img { transform: scale(1.08); }
.team-member-content {
    padding: 25px 20px;
    text-align: center;
    position: relative;
}
.team-member-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
    transition: all 0.3s ease;
}
.team-member-card:hover .team-member-content::before { left: 5%; right: 5%; }
.team-member-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
}
.team-member-title {
    color: var(--accent-red);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.team-member-credentials {
    color: var(--text-medium);
    font-size: 0.75rem;
    font-style: italic;
}

/* ============ CTA SECTION ============ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    position: relative;
    overflow: hidden;
}
.cta-content { text-align: center; position: relative; z-index: 2; }
.cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-btn {
    background: white;
    color: var(--accent-red);
    font-weight: 700;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1rem;
    border: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.cta-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    background: var(--primary-navy);
    color: white;
}

/* ============ CONTACT SECTION ============ */
.contact-section {
    padding: 120px 0;
    background: white;
}
.contact-card {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-light));
    color: white;
    border-radius: 24px;
    padding: 45px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.15) 0%, transparent 60%);
}
.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-navy);
}
.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-red);
    margin-bottom: 25px;
    position: relative;
}
.contact-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}
.contact-info {
    font-size: 0.95rem;
    line-height: 2;
    position: relative;
    opacity: 0.9;
}
.contact-info a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-info a:hover { color: var(--accent-red-light); }

/* ============ FOOTER ============ */
footer {
    background: var(--primary-navy);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-red-light), var(--accent-red));
}
.footer-brand { margin-bottom: 20px; background: white; padding: 15px 20px; border-radius: 12px; display: inline-block; }
.footer-brand img { height: 55px; }
.footer-about {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}
.footer-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 12px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-red);
}
.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
}
.footer-link:hover {
    color: var(--accent-red);
    transform: translateX(5px);
}
.social-icons { display: flex; gap: 12px; }
.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.1rem;
}
.social-icon:hover {
    background: var(--accent-red);
    color: white;
    transform: translateY(-5px);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ============ BACK TO TOP ============ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    color: white;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 9990;
    box-shadow: var(--shadow-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.35);
}

/* ============ MODAL ============ */
.modal-content { border: none; border-radius: 24px; overflow: hidden; }
.modal-header-custom {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-light));
    color: white;
    padding: 30px 35px;
    position: relative;
}
.modal-header-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-red-light));
}
.modal-header-custom h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    margin: 0;
}
.modal-body { padding: 40px; }
.form-label {
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 10px;
    font-size: 0.95rem;
}
.form-control {
    border-radius: 12px;
    border: 2px solid var(--border-light);
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.form-control:focus {
    border-color: var(--accent-red);
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.1);
}
.btn-submit {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    color: white;
    border: none;
    font-weight: 700;
    border-radius: 50px;
    padding: 16px;
    font-size: 1rem;
    transition: all 0.4s ease;
}
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
}

/* ============ PAGE HERO ============ */
.page-hero {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-light));
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}
.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(196, 30, 58, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
}
.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.page-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -2px;
}
.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.7;
}
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}
.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}
.breadcrumb-item a:hover { color: var(--accent-red); }
.breadcrumb-item.active { color: white; }
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ============ PRODUCTS NAV ============ */
.products-nav-section {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.products-nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
}
.products-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--light-bg);
    border-radius: 50px;
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.products-nav-item:hover {
    background: white;
    border-color: var(--accent-red);
    color: var(--accent-red);
}
.products-nav-item.active {
    background: var(--accent-red);
    color: white;
}

/* ============ PRODUCT SECTIONS ============ */
.product-section {
    padding: 100px 0;
    background: white;
}
.product-section-alt { background: var(--light-bg); }
.product-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}
.product-section-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-red);
}
.product-section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin: 0;
}
.product-section-header p {
    color: var(--text-medium);
    margin: 5px 0 0;
    font-size: 1rem;
}

/* ============ PRODUCT CARDS ============ */
.product-card-detailed {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--border-light);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.product-card-image {
    height: 220px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    position: relative;
    overflow: hidden;
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card-detailed:hover .product-card-image img { transform: scale(1.08); }
.product-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 29, 74, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.product-card-detailed:hover .product-card-overlay { opacity: 1; }
.product-link-btn {
    background: var(--accent-red);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.product-link-btn:hover {
    background: white;
    color: var(--primary-navy);
    transform: scale(1.05);
}
.product-badge-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-red);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}
.product-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.product-brand {
    color: var(--accent-red);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.product-card-content h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 15px;
}
.product-card-content p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}
.product-website-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-red);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 15px;
    transition: color 0.3s ease;
}
.product-website-link:hover { color: var(--accent-red-dark); }

/* ============ SERVICES PAGES ============ */
.services-overview {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid var(--border-light);
}
.service-overview-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.service-overview-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.service-overview-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-red);
}
.service-overview-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
}
.service-overview-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin: 0;
}

/* ============ SERVICE DETAIL SECTIONS ============ */
.service-detail-section {
    padding: 100px 0;
    background: white;
}
.service-detail-alt { background: var(--light-bg); }
.service-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.service-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.service-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--accent-red);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-red);
}
.service-detail-content { padding: 20px 0; }
.service-number {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(196, 30, 58, 0.1);
    line-height: 1;
    margin-bottom: -20px;
}
.service-detail-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 15px;
    line-height: 1.3;
}
.service-lead {
    color: var(--accent-red);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.service-detail-content p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}
.service-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}
.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-dark);
    font-weight: 500;
}
.service-features li i { color: var(--accent-red); font-size: 1.1rem; }
.service-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-red);
    margin-top: 10px;
}
.service-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.3);
    color: white;
}

/* ============ COURSE TOPICS ============ */
.course-topics { margin-top: 30px; }
.course-topics h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
}
.course-topic-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}
.course-topic-item:hover {
    background: white;
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}
.course-topic-item i { color: var(--accent-red); font-size: 1.1rem; }
.course-topic-item span {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* ============ WHY CHOOSE SERVICES ============ */
.why-choose-services {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-light));
    position: relative;
}
.why-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}
.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}
.why-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-red);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}
.why-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}
.why-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1400px) {
    .team-grid { grid-template-columns: repeat(5, 1fr); gap: 20px; }
    .team-member-image { height: 200px; }
}
@media (max-width: 1200px) {
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
    .hero-carousel-wrapper { height: 450px; }
    .carousel-caption-custom h2 { font-size: 2.5rem; }
    .section-title { font-size: 2.5rem; }
    .page-hero h1 { font-size: 2.5rem; }
    .navbar-toggler { border-color: var(--primary-navy); }
    .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231e3a5f' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
    .navbar-collapse { background: white; padding: 15px; border-radius: 12px; margin-top: 10px; box-shadow: var(--shadow-lg); }
}
@media (max-width: 768px) {
    .hero-carousel-wrapper { height: 400px; }
    .carousel-overlay {
        padding: 0 5%;
        justify-content: center;
        text-align: center;
        background: linear-gradient(180deg, rgba(15, 29, 74, 0.7), rgba(15, 29, 74, 0.5));
    }
    .carousel-caption-custom { text-align: center; }
    .carousel-caption-custom h2 { font-size: 2rem; }
    .carousel-cta { justify-content: center; }
    .carousel-dots { left: 50%; transform: translateX(-50%); }
    .section-title { font-size: 2rem; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .about-section, .features-section, .products-section,
    .services-section, .team-section, .contact-section { padding: 80px 0; }
    .cta-title { font-size: 2rem; }
    .page-hero { padding: 120px 0 60px; }
    .page-hero h1 { font-size: 2rem; }
    .service-image-wrapper img { height: 300px; }
    .service-detail-content h2 { font-size: 1.6rem; }
    .products-nav { gap: 8px; }
    .products-nav-item { padding: 10px 18px; font-size: 0.85rem; }
}
@media (max-width: 576px) {
    .hero-carousel-wrapper { height: 350px; }
    .carousel-caption-custom h2 { font-size: 1.6rem; }
    .carousel-btn-primary, .carousel-btn-secondary { padding: 12px 24px; font-size: 0.9rem; }
    .team-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
    .about-stats { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 1.8rem; }
}
