/* ============================================
   TABLE OF CONTENTS
   1. BASE STYLES
   2. NAVBAR & DROPDOWN
   3. FOOTER
   4. BACK TO TOP
   5. PAGE HERO & BREADCRUMB
   6. SECTION HEADERS
   7. BUTTONS
   8. CTA SECTION
   9. LEGAL PAGES
   10. CONTACT PAGE
   11. ABOUT PAGE
   12. SOLUTIONS PAGE
   13. CASE STUDIES PAGE
   14. TEAM PAGE
   15. CAROUSEL HERO
   16. WHATSAPP WIDGET
   17. ALERT STYLES
   18. POLICY PAGE
   19. RESPONSIVE STYLES
   20. UTILITY CLASSES
   ============================================ */

/* ============================================
   1. BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f4f7fc;
    color: #1e293b;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   2. NAVBAR & DROPDOWN
   ============================================ */
.navbar {
    background: rgba(11, 42, 74, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo i {
    color: #7fc9ff;
    font-size: 1.8rem;
}

.logo span {
    color: #7fc9ff;
}

/* Navigation Links - Desktop */
.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    font-size: 0.95rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7fc9ff;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: white;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.hamburger:hover {
    color: #7fc9ff;
}

.hamburger.active {
    color: #ffd700;
}

/* Dropdown Styles - Desktop */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
}

.dropdown-toggle i.fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown-toggle.active i.fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7fc9ff;
    transition: width 0.3s ease;
}

.dropdown-toggle:hover::after {
    width: 100%;
}

.dropdown-toggle:hover {
    color: white;
}

/* Dropdown Menu - Desktop */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 280px;
    padding: 8px 0;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    color: #1e293b;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.dropdown-menu li a i {
    width: 20px;
    color: #1c4c7a;
    font-size: 0.9rem;
    text-align: center;
}

.dropdown-menu li a:hover {
    background: #f8fafc;
    color: #0b2a4a;
    border-left-color: #ffd700;
    padding-left: 24px;
}

.dropdown-menu li:first-child a {
    border-radius: 12px 12px 0 0;
}

.dropdown-menu li:last-child a {
    border-radius: 0 0 12px 12px;
}

/* Desktop Dropdown Hover */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    
    .dropdown:hover .dropdown-toggle i.fa-chevron-down {
        transform: rotate(180deg);
    }
}

/* ============================================
   MOBILE MENU - FIXED
   ============================================ */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 20px 0 30px;
        gap: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 12px;
        background: rgba(11, 42, 74, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 0 0 12px 12px;
    }
    
    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-links a {
        padding: 8px 12px;
        width: 100%;
        text-align: left;
        border-radius: 8px;
        color: rgba(255, 255, 255, 0.8);
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.05);
        color: white;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    /* Mobile Dropdown - FIXED */
    .dropdown {
        width: 100%;
        display: block;
    }
    
    .dropdown-toggle {
        padding: 8px 12px;
        width: 100%;
        justify-content: space-between;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.95rem;
        border-radius: 8px;
        display: flex;
        align-items: center;
        background: none;
        border: none;
        cursor: pointer;
        font-family: inherit;
        transition: all 0.3s ease;
    }
    
    .dropdown-toggle:hover {
        background: rgba(255, 255, 255, 0.05);
        color: white;
    }
    
    .dropdown-toggle i.fa-chevron-down {
        transition: transform 0.3s ease;
        font-size: 0.8rem;
    }
    
    .dropdown-toggle.active i.fa-chevron-down {
        transform: rotate(180deg);
    }
    
    /* Fix: Dropdown menu should be full width and visible */
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 8px !important;
        min-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
        margin-top: 4px !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.4s ease, padding 0.4s ease !important;
        border: none !important;
        display: block !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    .dropdown-menu.show {
        max-height: 600px !important;
        padding: 8px 0 !important;
        overflow-y: auto !important;
    }
    
    .dropdown-menu::before {
        display: none !important;
    }
    
    .dropdown-menu li {
        width: 100% !important;
        display: block !important;
    }
    
    .dropdown-menu li a {
        color: rgba(255, 255, 255, 0.7) !important;
        padding: 10px 16px !important;
        padding-left: 44px !important;
        border-left: 3px solid transparent !important;
        font-size: 0.9rem !important;
        border-radius: 0 !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        transition: all 0.3s ease !important;
        text-decoration: none !important;
    }
    
    .dropdown-menu li a:hover {
        background: rgba(255, 255, 255, 0.05) !important;
        color: white !important;
        border-left-color: #ffd700 !important;
        padding-left: 48px !important;
    }
    
    .dropdown-menu li a i {
        color: #7fc9ff !important;
        width: 20px !important;
        flex-shrink: 0 !important;
        text-align: center !important;
    }
    
    /* Mobile scrollbar */
    .nav-links.active::-webkit-scrollbar {
        width: 4px;
    }
    
    .nav-links.active::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
    }
    
    .nav-links.active::-webkit-scrollbar-thumb {
        background: #7fc9ff;
        border-radius: 4px;
    }
}

/* ============================================
   3. FOOTER
   ============================================ */
.modern-footer {
    background: #0b1f30;
    color: #b6ccdf;
    padding: 60px 0 0;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.footer-brand i {
    color: #7fc9ff;
    font-size: 1.8rem;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b6ccdf;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a:hover {
    background: #ffd700;
    color: #0b2a4a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.footer-heading {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #f59e0b);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.6rem;
    color: #ffd700;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.footer-contact li i {
    color: #ffd700;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact li span,
.footer-contact li a {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: white;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #64748b;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

.footer-bottom-links .separator {
    color: #334155;
}

/* ============================================
   4. BACK TO TOP - FIXED POSITIONING
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700, #f59e0b);
    color: #0b2a4a;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

/* ============================================
   5. PAGE HERO & BREADCRUMB
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, #0b2a4a 0%, #1a4a7a 40%, #2d6ca0 100%);
    padding: 80px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 201, 255, 0.05), transparent 70%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.page-hero-content h1 .highlight {
    background: linear-gradient(135deg, #7fc9ff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-content > p {
    font-size: 1.2rem;
    color: #b8d4f0;
    margin-bottom: 16px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    padding: 8px 0;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #b8d4f0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #ffd700;
    transform: translateX(2px);
}

.breadcrumb .separator {
    color: #64748b;
    font-weight: 300;
    margin: 0 4px;
}

.breadcrumb .current {
    color: #ffd700;
    font-weight: 600;
}

/* ============================================
   6. SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: #dbeafe;
    color: #1c4c7a;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #0b2a4a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-header h2 .highlight {
    background: linear-gradient(135deg, #1c4c7a, #7fc9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   7. BUTTONS
   ============================================ */
.btn {
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700, #f59e0b);
    color: #0b2a4a;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 14px;
}

.btn-hero {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 12px;
}

/* ============================================
   8. CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0b2a4a, #1a4a7a);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 201, 255, 0.05), transparent 70%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-content h2 .highlight {
    background: linear-gradient(135deg, #ffd700, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    color: #b8d4f0;
    font-size: 1.2rem;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-footer {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-footer span {
    color: #b8d4f0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.cta-footer span i {
    color: #10b981;
}

/* ============================================
   9. LEGAL PAGES (Privacy, Terms, Cookie)
   ============================================ */
.legal-page {
    padding: 60px 0;
    background: white;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-meta {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.last-updated {
    color: #64748b;
    font-size: 0.95rem;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: #0b2a4a;
    margin-bottom: 16px;
}

.legal-section h3 {
    font-size: 1.2rem;
    color: #1c4c7a;
    margin: 20px 0 12px;
}

.legal-section p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-section ul {
    padding-left: 24px;
    margin: 12px 0 16px;
}

.legal-section ul li {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 6px;
}

.legal-section ul li::marker {
    color: #1c4c7a;
}

.legal-section a {
    color: #1c4c7a;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.legal-section a:hover {
    color: #ffd700;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.95rem;
}

.cookie-table thead {
    background: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
}

.cookie-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #0b2a4a;
}

.cookie-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
}

.cookie-table tbody tr:hover {
    background: #f8fafc;
}

/* ============================================
   10. CONTACT PAGE
   ============================================ */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1c4c7a;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    color: #0b2a4a;
    margin-bottom: 2px;
}

.contact-item p {
    color: #475569;
    margin: 0;
}

.contact-item a {
    color: #1c4c7a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffd700;
}

.contact-social {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.contact-social h4 {
    font-size: 1rem;
    color: #0b2a4a;
    margin-bottom: 12px;
}

.contact-social .social-links {
    display: flex;
    gap: 12px;
}

.contact-social .social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1c4c7a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social .social-links a:hover {
    background: #ffd700;
    color: #0b2a4a;
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: #f8fafc;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
}

.contact-form h3 {
    font-size: 1.6rem;
    color: #0b2a4a;
    margin-bottom: 24px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: #0b2a4a;
    margin-bottom: 6px;
}

.contact-form .required {
    color: #ef4444;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1c4c7a;
    box-shadow: 0 0 0 3px rgba(28, 76, 122, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.map-section {
    padding: 0 0 80px;
    background: white;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.map-wrapper iframe {
    height: 100%;
    width: 100%;
}

/* ============================================
   11. ABOUT PAGE
   ============================================ */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-tag {
    display: inline-block;
    background: #dbeafe;
    color: #1c4c7a;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.about-text h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #0b2a4a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text h2 .highlight {
    background: linear-gradient(135deg, #1c4c7a, #7fc9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.about-stats .stat-item {
    text-align: center;
}

.about-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b2a4a;
}

.about-stats .stat-label {
    font-size: 0.85rem;
    color: #64748b;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 42, 74, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.about-image:hover .about-image-overlay {
    background: rgba(11, 42, 74, 0.4);
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button i {
    color: #0b2a4a;
    font-size: 1.8rem;
    margin-left: 4px;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.mission-vision-section {
    padding: 80px 0;
    background: #f8fafc;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mv-card {
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.mv-card.mission {
    background: white;
    border: 1px solid #e2e8f0;
}

.mv-card.vision {
    background: linear-gradient(135deg, #0b2a4a, #1a4a7a);
    color: white;
}

.mv-card.vision p {
    color: #b8d4f0;
}

.mv-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.mv-card.mission .mv-icon {
    background: #dbeafe;
    color: #1c4c7a;
}

.mv-card.vision .mv-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #ffd700;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.mv-card p {
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    background: white;
}

.value-card:hover {
    border-color: #7fc9ff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1c4c7a;
    margin: 0 auto 20px;
}

.value-card h3 {
    font-size: 1.4rem;
    color: #0b2a4a;
    margin-bottom: 12px;
}

.value-card p {
    color: #475569;
    line-height: 1.8;
}

/* Team Preview */
.team-preview {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.team-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    background: white;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: #7fc9ff;
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2.5rem;
    color: #1c4c7a;
}

.team-card h4 {
    font-size: 1.1rem;
    color: #0b2a4a;
    margin-bottom: 4px;
}

.team-card p {
    color: #64748b;
    font-size: 0.9rem;
}

/* ============================================
   12. SOLUTIONS PAGE
   ============================================ */
.solutions-detailed {
    padding: 80px 0;
    background: white;
}

.solution-item {
    padding: 60px 0;
    border-bottom: 1px solid #e2e8f0;
}

.solution-item:last-child {
    border-bottom: none;
}

.solution-item-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
}

.solution-item-content.reverse {
    grid-template-columns: 1fr auto;
}

.solution-icon-large {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: #1c4c7a;
    flex-shrink: 0;
}

.solution-text h3 {
    font-size: 1.8rem;
    color: #0b2a4a;
    margin-bottom: 12px;
}

.solution-text > p {
    color: #475569;
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.solution-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    margin-bottom: 24px;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: #475569;
    font-size: 0.95rem;
}

.solution-features li i {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ============================================
   13. CASE STUDIES PAGE
   ============================================ */
.cases-section {
    padding: 80px 0;
    background: white;
}

.case-study-full {
    background: white;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    margin-bottom: 40px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.case-study-full:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.case-study-header {
    padding: 30px 36px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

.case-study-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.case-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #dbeafe;
    line-height: 1;
}

.case-study-meta h3 {
    font-size: 1.4rem;
    color: #0b2a4a;
    margin-bottom: 4px;
}

.case-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: white;
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    color: #475569;
    border: 1px solid #e2e8f0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tag i {
    color: #1c4c7a;
}

.case-roi-badge {
    background: linear-gradient(135deg, #ffd700, #f59e0b);
    padding: 8px 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 80px;
}

.roi-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #0b2a4a;
    line-height: 1.1;
}

.roi-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #78350f;
    text-transform: uppercase;
}

.case-study-body {
    padding: 30px 36px;
}

.case-company-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.case-company-info .info-item {
    font-size: 0.95rem;
    color: #475569;
}

.case-company-info .info-item strong {
    color: #0b2a4a;
}

.case-challenge,
.case-solution,
.case-results-detailed {
    margin-bottom: 20px;
}

.case-challenge:last-child,
.case-solution:last-child,
.case-results-detailed:last-child {
    margin-bottom: 0;
}

.case-challenge h4,
.case-solution h4,
.case-results-detailed h4 {
    font-size: 1.05rem;
    color: #0b2a4a;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.case-challenge h4 i {
    color: #ef4444;
}

.case-solution h4 i {
    color: #f59e0b;
}

.case-results-detailed h4 i {
    color: #10b981;
}

.case-challenge p,
.case-solution p {
    color: #475569;
    line-height: 1.8;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 12px;
}

.result-item {
    background: #f8fafc;
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
}

.result-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b2a4a;
}

.result-label {
    display: block;
    font-size: 0.85rem;
    color: #475569;
    font-weight: 500;
}

.result-detail {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 4px;
}

/* ============================================
   14. TEAM PAGE
   ============================================ */
.team-section {
    padding: 80px 0;
    background: white;
}

.team-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #7fc9ff;
}

.member-card {
    overflow: hidden;
}

.member-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(transparent, rgba(11, 42, 74, 0.8));
    transition: all 0.3s ease;
}

.member-card:hover .member-social {
    bottom: 0;
}

.member-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #ffd700;
    color: #0b2a4a;
    transform: scale(1.1);
}

.member-info {
    padding: 24px;
}

.member-info h3 {
    font-size: 1.3rem;
    color: #0b2a4a;
    margin-bottom: 4px;
}

.member-role {
    display: inline-block;
    background: #dbeafe;
    color: #1c4c7a;
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.member-info p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   15. CAROUSEL HERO
   ============================================ */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #0b2a4a 0%, #1a4a7a 40%, #2d6ca0 100%);
}

.slide-image[src=""],
.slide-image:not([src]) {
    background: linear-gradient(135deg, #0b2a4a 0%, #1a4a7a 40%, #2d6ca0 100%);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 42, 74, 0.85) 0%, rgba(26, 74, 122, 0.7) 50%, rgba(45, 108, 160, 0.5) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.slide-text {
    max-width: 700px;
    animation: slideInUp 0.8s ease forwards;
}

.carousel-slide:not(.active) .slide-text {
    animation: none;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    color: #b8d4f0;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.slide-badge i {
    color: #7fc9ff;
}

.slide-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 16px;
}

.slide-title .highlight {
    background: linear-gradient(135deg, #7fc9ff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-description {
    font-size: 1.1rem;
    color: #cce0f0;
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.slide-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: #ffd700;
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* ============================================
   16. WHATSAPP WIDGET - FIXED POSITIONING
   ============================================ */
.whatsapp-chat-widget {
    position: fixed;
    bottom: 10px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* WhatsApp Chat Button */
.whatsapp-chat-button {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    border: none;
    font-family: 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.whatsapp-chat-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-chat-button:active {
    transform: scale(0.95);
}

.whatsapp-chat-button .whatsapp-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.whatsapp-chat-button .whatsapp-label {
    font-size: 0.95rem;
    white-space: nowrap;
}

/* WhatsApp Popup */
.whatsapp-chat-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 40px);
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(37, 211, 102, 0.1);
}

.whatsapp-chat-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.whatsapp-popup-header {
    background: linear-gradient(135deg, #075E54, #128C7E);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.whatsapp-popup-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.whatsapp-popup-info {
    flex: 1;
}

.whatsapp-popup-info h4 {
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

.whatsapp-popup-info p {
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.8;
}

.whatsapp-popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.whatsapp-popup-close:hover {
    opacity: 1;
}

.whatsapp-popup-body {
    padding: 20px;
    background: #f0f7f5;
    min-height: 120px;
    max-height: 200px;
    overflow-y: auto;
}

.whatsapp-message-bubble {
    background: white;
    padding: 14px 18px;
    border-radius: 12px 12px 12px 4px;
    max-width: 85%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.whatsapp-message-bubble p {
    margin: 0 0 4px 0;
    color: #1e293b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.whatsapp-message-bubble p:last-child {
    margin-bottom: 0;
}

.whatsapp-popup-footer {
    padding: 16px 20px 20px;
    background: white;
    border-top: 1px solid #f1f5f9;
}

.whatsapp-quick-replies {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.quick-reply {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.8rem;
    color: #0b2a4a;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Segoe UI', sans-serif;
    text-align: left;
}

.quick-reply:hover {
    background: #dbeafe;
    border-color: #1c4c7a;
    transform: translateY(-2px);
}

.quick-reply:active {
    transform: scale(0.95);
}

.quick-reply i {
    color: #1c4c7a;
    font-size: 0.8rem;
}

.whatsapp-start-chat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
    border: none;
    cursor: pointer;
}

.whatsapp-start-chat:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    color: white;
}

.whatsapp-start-chat:active {
    transform: scale(0.98);
}

.whatsapp-powered {
    text-align: center;
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 8px;
}

/* ============================================
   17. ALERT STYLES
   ============================================ */
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid;
}

.alert i {
    font-size: 1.4rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.alert-success {
    background: #f0fdf4;
    color: #065f46;
    border-color: #86efac;
}

.alert-success i {
    color: #10b981;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fca5a5;
}

.alert-error i {
    color: #ef4444;
}

.alert-success strong,
.alert-error strong {
    display: block;
    margin-bottom: 4px;
}

.alert ul {
    margin: 4px 0 0 16px;
    padding: 0;
}

.alert ul li {
    margin-bottom: 2px;
}

.alert p {
    margin: 0;
}

/* ============================================
   18. POLICY PAGE
   ============================================ */
.policy-page {
    padding: 60px 0 80px;
    background: white;
}

.policy-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 40px;
}

.policy-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.policy-version {
    display: inline-block;
    background: #dbeafe;
    color: #1c4c7a;
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.policy-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.policy-actions .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.policy-actions .btn-outline {
    background: transparent;
    color: #0b2a4a;
    border: 2px solid #e2e8f0;
}

.policy-actions .btn-outline:hover {
    background: #f8fafc;
    border-color: #0b2a4a;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 48px;
}

.policy-section h2 {
    font-size: 1.8rem;
    color: #0b2a4a;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ffd700;
}

.policy-section h3 {
    font-size: 1.2rem;
    color: #1c4c7a;
    margin: 24px 0 12px;
}

.policy-section p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 12px;
}

.policy-section ul {
    padding-left: 24px;
    margin: 12px 0 16px;
}

.policy-section ul li {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 6px;
}

.policy-section ul li::marker {
    color: #1c4c7a;
}

.policy-note {
    background: #f0f7ff;
    padding: 16px 20px;
    border-radius: 12px;
    border-left: 4px solid #1c4c7a;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 16px 0;
}

.policy-note i {
    color: #1c4c7a;
    font-size: 1.2rem;
    margin-top: 2px;
}

.policy-note p {
    margin: 0;
    color: #0b2a4a;
}

.policy-note.highlight-box {
    background: #fef3c7;
    border-left-color: #f59e0b;
}

.policy-note.highlight-box i {
    color: #f59e0b;
}

.policy-note.highlight-box p {
    color: #78350f;
}

/* Values Grid for Policy */
.policy-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 16px 0;
}

.policy-value-item {
    background: #f8fafc;
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.policy-value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    border-color: #1c4c7a;
}

.policy-value-icon {
    font-size: 1.8rem;
    color: #1c4c7a;
    display: block;
    margin-bottom: 8px;
}

.policy-value-item h4 {
    font-size: 0.95rem;
    color: #0b2a4a;
    margin-bottom: 4px;
}

.policy-value-item p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

/* Misconduct Types */
.misconduct-types {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin: 16px 0;
}

.misconduct-card {
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.misconduct-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.misconduct-card h4 i {
    font-size: 1.1rem;
}

.misconduct-card p {
    font-size: 0.9rem;
    margin: 0;
    color: #475569;
    line-height: 1.6;
}

.misconduct-card.minor {
    background: #f0fdf4;
    border-color: #86efac;
}

.misconduct-card.minor h4 i {
    color: #10b981;
}

.misconduct-card.serious {
    background: #fef3c7;
    border-color: #fcd34d;
}

.misconduct-card.serious h4 i {
    color: #f59e0b;
}

.misconduct-card.gross {
    background: #fee2e2;
    border-color: #fca5a5;
}

.misconduct-card.gross h4 i {
    color: #ef4444;
}

/* Policy Tables */
.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 0.95rem;
}

.policy-table thead {
    background: #0b2a4a;
    color: white;
}

.policy-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}

.policy-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
}

.policy-table tbody tr:hover {
    background: #f8fafc;
}

.policy-table tbody tr:nth-child(even) {
    background: #fafbfc;
}

/* Procedure List */
.procedure-list {
    padding-left: 24px;
    margin: 12px 0 16px;
    counter-reset: procedure;
}

.procedure-list li {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: none;
    counter-increment: procedure;
    position: relative;
    padding-left: 32px;
}

.procedure-list li::before {
    content: counter(procedure);
    position: absolute;
    left: 0;
    top: 0;
    color: #1c4c7a;
    font-weight: 700;
    background: #dbeafe;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Declaration Form */
.declaration-section {
    background: #f8fafc;
    padding: 32px 40px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    margin-top: 40px;
}

.declaration-section h2 {
    font-size: 1.6rem;
    color: #0b2a4a;
    margin-bottom: 12px;
}

.declaration-section > p {
    color: #475569;
    margin-bottom: 24px;
    font-style: italic;
}

.declaration-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.declaration-form .form-group {
    display: flex;
    flex-direction: column;
}

.declaration-form .form-group label {
    font-weight: 600;
    color: #0b2a4a;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.declaration-form .form-line {
    border-bottom: 2px solid #94a3b8;
    height: 32px;
    font-size: 0.9rem;
    color: #475569;
    padding: 0 4px;
}

/* ============================================
   19. RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-item-content,
    .solution-item-content.reverse {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .solution-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .solution-features {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .case-study-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .result-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .misconduct-types {
        grid-template-columns: 1fr;
    }
    
    .declaration-form {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .page-hero-content > p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-footer {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .solution-item {
        padding: 40px 0;
    }
    
    .solution-text h3 {
        font-size: 1.4rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .map-wrapper {
        height: 300px;
    }
    
    .case-study-header {
        padding: 20px;
    }
    
    .case-study-body {
        padding: 20px;
    }
    
    .case-study-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .case-company-info {
        gap: 12px;
    }
    
    .result-grid {
        grid-template-columns: 1fr;
    }
    
    .case-number {
        font-size: 2rem;
    }
    
    .team-grid-full {
        grid-template-columns: 1fr;
    }
    
    .member-image {
        height: 220px;
    }
    
    .hero-carousel {
        height: 90vh;
        min-height: 500px;
        max-height: 700px;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .slide-actions .btn-hero {
        width: 100%;
        justify-content: center;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
    
    .carousel-indicators {
        bottom: 20px;
        gap: 8px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .policy-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .policy-meta {
        justify-content: center;
    }
    
    .policy-actions {
        justify-content: center;
    }
    
    .policy-section h2 {
        font-size: 1.4rem;
    }
    
    .policy-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .policy-table {
        font-size: 0.85rem;
    }
    
    .policy-table th,
    .policy-table td {
        padding: 8px 12px;
    }
    
    .declaration-section {
        padding: 24px;
    }
    
    .legal-section h2 {
        font-size: 1.4rem;
    }
    
    .legal-section h3 {
        font-size: 1.1rem;
    }
    
    .cookie-table {
        font-size: 0.85rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 8px 12px;
    }
    
    /* Back to Top - Mobile */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    /* WhatsApp - Mobile - FIXED */
    .whatsapp-chat-widget {
        bottom: 80px;
        right: 16px;
    }
    
    .whatsapp-chat-button {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    .whatsapp-chat-button .whatsapp-label {
        font-size: 0.85rem;
    }
    
    .whatsapp-chat-popup {
        width: 340px;
        bottom: 70px;
        right: 0;
    }
    
    .whatsapp-quick-replies {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-hero-content h1 {
        font-size: 1.6rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    
    .slide-description {
        font-size: 0.9rem;
    }
    
    .slide-content {
        padding: 60px 0;
    }
    
    .policy-values-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .policy-actions .btn {
        justify-content: center;
    }
    
    .declaration-section {
        padding: 16px;
    }
    
    /* Back to Top - Small Mobile */
    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    /* WhatsApp - Small Mobile - FIXED */
    .whatsapp-chat-widget {
        bottom: 10px;
        right: 25px;
    }
    
    .whatsapp-chat-button {
        padding: 10px 14px;
        gap: 8px;
    }
    
    .whatsapp-chat-button .whatsapp-icon-wrapper {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    
    .whatsapp-chat-button .whatsapp-label {
        font-size: 0.8rem;
    }
    
    .whatsapp-chat-popup {
        width: calc(100vw - 24px);
        bottom: 5px;
        right: 0;
        border-radius: 16px;
    }
    
    .whatsapp-popup-header {
        padding: 12px 16px;
    }
    
    .whatsapp-popup-body {
        padding: 16px;
        max-height: 110px;
    }
    
    .whatsapp-popup-footer {
        padding: 12px 16px 16px;
    }
}

/* ============================================
   20. UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

.highlight {
    color: #1c4c7a;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .navbar,
    .footer-social,
    .footer-bottom-links,
    .back-to-top,
    .whatsapp-chat-widget,
    .policy-toolbar .policy-actions {
        display: none !important;
    }
    
    .policy-toolbar {
        border-bottom: none !important;
    }
    
    .policy-page {
        padding: 20px 0;
    }
    
    .policy-section h2 {
        border-bottom-color: #000;
    }
    
    .policy-note {
        border: 1px solid #e2e8f0;
        background: #f8fafc;
    }
    
    .declaration-section {
        border: 1px solid #000;
        background: #fafbfc;
    }
    
    .misconduct-card {
        border: 1px solid #000;
        page-break-inside: avoid;
    }
    
    .policy-value-item {
        border: 1px solid #e2e8f0;
        page-break-inside: avoid;
    }
    
    .policy-table thead {
        background: #333;
        color: white;
    }
    
    .policy-table td {
        border-bottom: 1px solid #ddd;
    }
    
    .page-hero {
        background: #0b2a4a !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
    
    .page-hero-content h1 .highlight {
        -webkit-text-fill-color: #ffd700 !important;
        color: #ffd700 !important;
    }
}