/* Custom CSS overrides and enhancements for Inimba Multi Services */\n\n/* MOBILE-ENHANCED NAVBAR & HAMBURGER */\n#navbar {\n    backdrop-filter: blur(20px);\n    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);\n}\n\n#mobile-menu {\n    position: fixed;\n    top: 0;\n    left: 0;\n    right: 0;\n    height: 100vh;\n    background: white;\n    transform: translateX(100%);\n    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);\n    z-index: 40;\n    overflow-y: auto;\n    padding-top: 5rem; /* Account for fixed navbar */\n    box-shadow: -4px 0 20px rgba(0,0,0,0.1);\n}\n\n#mobile-menu:not(.hidden) {\n    transform: translateX(0);\n}\n\n#mobile-menu-btn {\n    position: relative;\n    width: 40px;\n    height: 40px;\n    padding: 8px;\n    border-radius: 8px;\n    transition: all 0.3s ease;\n    touch-action: manipulation;\n}\n\n#mobile-menu-btn:hover {\n    background: rgba(59, 130, 246, 0.1);\n}\n\n#mobile-menu-btn svg {\n    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);\n}\n\n/* Hamburger to X animation */\n#mobile-menu:not(.hidden) #mobile-menu-btn svg path {\n    stroke-width: 3;\n}\n\n#mobile-menu:not(.hidden) #mobile-menu-btn svg path:nth-child(1) {\n    transform: rotate(45deg) translate(5px, 5px);\n}\n\n#mobile-menu:not(.hidden) #mobile-menu-btn svg path:nth-child(2) {\n    opacity: 0;\n}\n\n#mobile-menu:not(.hidden) #mobile-menu-btn svg path:nth-child(3) {\n    transform: rotate(-45deg) translate(7px, -6px);\n}\n\n/* COMPREHENSIVE RESPONSIVE UTILITIES */\nhtml {\n    -webkit-text-size-adjust: 100%;\n    -webkit-overflow-scrolling: touch;\n    overscroll-behavior: none;\n}\n\nbody {\n    min-height: 100vh;\n    line-height: 1.6;\n    -webkit-font-smoothing: antialiased;\n    -moz-osx-font-smoothing: grayscale;\n}\n\n/* Typography clamp for all devices */\n.text-5xl { font-size: clamp(2rem, 5vw, 3rem); }\n.text-6xl { font-size: clamp(2.5rem, 6vw, 4rem); }\n.text-4xl { font-size: clamp(1.875rem, 4.5vw, 2.5rem); }\n.text-3xl { font-size: clamp(1.5rem, 4vw, 2rem); }\n.text-2xl { font-size: clamp(1.25rem, 3.5vw, 1.75rem); }\n.text-xl  { font-size: clamp(1.125rem, 3vw, 1.375rem); }\n\n/* Section padding optimization */\nsection, main {\n    padding-left: clamp(1rem, 5vw, 2rem);\n    padding-right: clamp(1rem, 5vw, 2rem);\n}\n\n/* Hero specific mobile */\n#home {\n    padding-top: clamp(6rem, 15vh, 8rem) !important;\n    padding-bottom: clamp(4rem, 10vh, 6rem);\n}\n\n/* Grid adjustments for small screens */\n@media (max-width: 480px) {\n    .grid { grid-template-columns: 1fr !important; }\n    .md\\:grid-cols-2 > div { width: 100%; }\n}\n\n/* Prevent horizontal scroll */\n* {\n    box-sizing: border-box;\n}\n\n/* Navbar safe area for notches */\n@media (max-width: 640px) {\n    #navbar {\n        padding-top: env(safe-area-inset-top);\n        padding-left: env(safe-area-inset-left);\n        padding-right: env(safe-area-inset-right);\n    }\n}\n\n/* Landscape phone fixes */\n@media (max-height: 500px) and (orientation: landscape) {\n    #mobile-menu {\n        max-height: 100vh;\n        overflow: auto;\n    }\n    .pt-20 { padding-top: 4rem !important; }\n}\n\n/* Ultra-small screens */\n@media (max-width: 320px) {\n    .px-4 { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }\n    .max-w-7xl { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }\n}\n\n/* iPad-specific */\n@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {\n    .lg\\:grid-cols-4 { grid-template-columns: repeat(2, 1fr); }\n}\n\n/* Footer enhancements already good, minor tweak */\n@media (max-width: 768px) {\n    .footer-content { padding-left: 1rem; padding-right: 1rem; }\n}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Navbar shadow on scroll */
/* #navbar.scrolled removed - multi-page clean */

/* Hero improvements */
#home {
    background-attachment: fixed;
    background-size: cover;
}

/* Service cards hover */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Form focus states */
input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

/* Contact form specific enhancements */
#contact-form input, #contact-form textarea, #contact-form select {
    transition: all 0.3s ease;
}

/* Validation states */
.valid-field {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2) !important;
}

.error-field {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
}

.submit-success {
    background: linear-gradient(to right, #10b981, #059669) !important;
    transform: scale(1.02);
}

.error-msg {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    font-weight: 500;
    animation: shake 0.5s ease-in-out;
}

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

#contact-form .error-msg {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

/* Loading spinner for submit button */
.contact-submitting {
    opacity: 0.7;
    pointer-events: none;
}

.spinner {
    border: 3px solid #f3f4f6;
    border-top: 3px solid #3b82f6;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success message (for future backend) */
.success-message {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Animation for sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}

/* Print styles */
@media print {
    .no-print {
        display: none;
    }
    nav, footer {
        display: none;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #0f172a;
        color: #f1f5f9;
    }
}

/* Responsive improvements */
@media (max-width: 640px) {
    .text-5xl {
        font-size: 2.5rem;
    }
    
    .text-6xl {
        font-size: 3rem;
    }
}

/* ========================================
   PROFESSIONAL FOOTER STYLES
   ======================================== */

/* Footer base */
footer {
    background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #111827 100%);
    color: #f9fafb;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4b5563, transparent);
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem 2rem;
}

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

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
}

.footer-section p,
.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.2s ease;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #3b82f6;
    transform: translateX(4px);
}

.quick-links-list,
.services-list {
    list-style: none;
    padding: 0;
}

.quick-links-list li,
.services-list li {
    margin-bottom: 0.75rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(55, 65, 81, 0.3);
    border-radius: 0.75rem;
    transition: all 0.2s ease;
}

.contact-item:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(4px);
}

.contact-icon {
    width: 2.25rem;
    height: 2.25rem;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input {
    padding: 0.875rem 1.25rem;
    border: 2px solid #374151;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    color: #f9fafb;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.newsletter-input::placeholder {
    color: #9ca3af;
}

.newsletter-btn {
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

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

.social-link {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.2s ease;
    text-decoration: none;
    color: #d1d5db;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    color: white;
}

.social-whatsapp { background: #25D366; }
.social-facebook { background: #1877F2; }
.social-linkedin { background: #0077B5; }
.social-email { background: linear-gradient(135deg, #3b82f6, #10b981); }

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer-bottom a {
    color: #60a5fa;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 2rem 1rem 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Newsletter success animation */
.newsletter-success {
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid #10b981;
    color: #10b981;
    animation: pulse 2s infinite;
}

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

/* Footer logo */
.footer-logo {
    height: 3rem;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    transition: transform 0.2s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

