/* =============================================
   ING INFOMIX - Modern Corporate Design
   Blue, Dark & Light Theme
   ============================================= */

/* ===== CSS Variables ===== */
:root {
    --primary-blue: #0066FF;
    --primary-dark: #161616;
    --primary-light: #FBFBFB;
    --black: #000000;
    --dark-gray: #161616;
    --bright-yellow: #FFD700;
    --dark-yellow: #f59e0b;
    --sky-blue: #0066FF;
    --light-blue: #3385FF;
    --white: #ffffff;
    --light-gray: #FBFBFB;
    --text-dark: #161616;
    --text-muted: #666666;
    --transition: all 0.3s ease;
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 0 !important; /* No rounded corners */
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: "harmonyos-sans", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--primary-light);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

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

/* ===== Header Styles - Full Width Navigation ===== */
.main-header {
    background-color: var(--primary-dark);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-container {
    width: 100%;
    max-width: 100%;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo img {
    height: 40px;
}

/* Ensure no underline on mega menu items */
.mega-menu-item {
    text-decoration: none;
    color: inherit;
}

.mega-menu-item:hover {
    text-decoration: none;
}

/* ===== Navigation Menu - Full Width ===== */
.main-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0 20px;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--white);
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
    height: 70px;
    box-sizing: border-box;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-blue);
}

.nav-item.hover-active .nav-link,
.nav-item.active .nav-link {
    background-color: rgba(0, 102, 255, 0.15);
    color: var(--primary-blue);
}

.nav-link .dropdown-icon {
    font-size: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 3px;
}

.nav-item.hover-active .dropdown-icon,
.nav-item.active .dropdown-icon {
    transform: rotate(180deg);
}

/* ===== Header Actions ===== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.search-icon {
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    padding: 10px;
}

.search-icon:hover {
    color: var(--primary-blue);
}

.contact-btn {
    background-color: var(--primary-blue);
    color: var(--white);
    border: 2px solid var(--primary-blue);
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.contact-btn:hover {
    background-color: transparent;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* ===== Mega Menu ===== */
.mega-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100vw;
    background-color: var(--primary-light);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    border-top: 3px solid var(--primary-blue);
}

.nav-item:hover .mega-menu,
.nav-item.hover-active .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item.has-megamenu:hover .nav-link,
.nav-item.hover-active .nav-link {
    color: var(--primary-blue);
    background-color: rgba(0, 102, 255, 0.1);
}

.nav-item.has-megamenu:hover .dropdown-icon,
.nav-item.hover-active .dropdown-icon {
    transform: rotate(180deg);
}

.mega-menu-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 30px 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Services Mega Menu - 5 columns */
.mega-menu-content.services-menu {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.mega-menu-column {
    padding: 10px;
}

.mega-menu-column h3 {
    color: var(--primary-dark);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-menu-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    margin-bottom: 8px;
    transition: var(--transition);
    border: 1px solid transparent;
    background-color: transparent;
}

.mega-menu-item:hover {
    background-color: #ffffff;
    border-color: var(--primary-blue);
    transform: translateX(5px);
}

.mega-menu-icon {
    width: 45px;
    height: 45px;
    background-color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    color: white;
    font-size: 12px;
}

.mega-menu-icon.yellow {
    background-color: var(--bright-yellow);
    color: var(--black);
}

.mega-menu-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-menu-text h4 {
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.mega-menu-text p {
    color: #666;
    font-size: 12px;
    line-height: 1.4;
}

/* Mega Menu Featured Section with Image/Video */
.mega-menu-featured {
    background: linear-gradient(135deg, #f0f7ff 0%, #fff 100%);
    padding: 20px;
    border-left: 3px solid var(--primary-blue);
}

.mega-menu-featured h3 {
    border-bottom: none;
    margin-bottom: 15px;
}

.mega-menu-image {
    width: 100%;
    height: 150px;
    background-color: #e0e0e0;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
}

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

.mega-menu-video {
    width: 100%;
    height: 180px;
    background-color: var(--bright-yellow);
    margin-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mega-menu-video video,
.mega-menu-video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-menu-video .play-btn {
    width: 60px;
    height: 60px;
    background-color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: absolute;
    z-index: 2;
}

.mega-menu-video .play-btn:hover {
    background-color: var(--white);
    transform: scale(1.1);
}

.mega-menu-video .play-icon {
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid var(--black);
    margin-left: 5px;
}

.mega-menu-featured p {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
}

.mega-menu-featured .btn {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 13px;
}

/* ===== Mobile Menu Toggle ===== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    color: var(--primary-blue);
}

/* ===== Hero Section (Yellow Background like TCS) ===== */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('../images/hero_banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--primary-dark); /* Fallback */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

.hero-section h1 {
    font-size: 56px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-video-placeholder {
    width: 200px;
    height: 200px;
    margin: 40px auto;
    background-color: #e0e0e0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.play-button:hover {
    background-color: var(--sky-blue);
}

.play-icon {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid var(--black);
    margin-left: 5px;
}

/* ===== Content Sections ===== */
.content-section {
    padding: 80px 20px;
}

.section-dark {
    background-color: var(--dark-gray);
    color: var(--white);
}

.section-light {
    background-color: var(--white);
    color: var(--text-dark);
}

.section-blue {
    background-color: var(--sky-blue);
    color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Card Grid ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background-color: var(--white);
    padding: 30px;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.section-dark .card {
    background-color: #1a1a1a;
    border-color: #333;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border-color: var(--sky-blue);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bright-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--black);
}

.section-dark .card h3 {
    color: var(--white);
}

.card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.section-dark .card p {
    color: #ccc;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--sky-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
}

.btn-secondary {
    background-color: var(--dark-yellow);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--bright-yellow);
    color: var(--black);
    transform: translateY(-2px);
}

/* ===== Footer (TCS-Inspired Black Footer) ===== */
.main-footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-logo {
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-column p,
.footer-column a {
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
    display: block;
    margin-bottom: 10px;
}

.footer-column a:hover {
    color: var(--bright-yellow);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--bright-yellow);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
    font-size: 13px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #999;
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--bright-yellow);
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .header-container {
        padding: 0 15px;
    }
    
    .main-nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--primary-dark);
        flex-direction: column;
        padding: 0;
        overflow-y: auto;
        z-index: 998;
        margin: 0;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
        justify-content: flex-start;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid #333;
    }
    
    .nav-link {
        width: 100%;
        padding: 18px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: none;
        font-size: 15px;
        height: auto;
    }
    
    .nav-link .dropdown-icon {
        font-size: 10px;
    }
    
    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #1a1a1a;
        display: none;
        max-height: none;
        overflow: visible;
        border-top: none;
    }
    
    .nav-item.active .mega-menu {
        display: block;
    }
    
    .mega-menu-content {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 15px;
        max-width: 100%;
    }
    
    .mega-menu-content.services-menu {
        grid-template-columns: 1fr;
    }
    
    .mega-menu-column {
        padding: 10px;
        background-color: #252525;
        margin-bottom: 5px;
    }
    
    .mega-menu-column h3 {
        color: var(--primary-blue);
        font-size: 14px;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 2px solid var(--primary-blue);
    }
    
    .mega-menu-item {
        padding: 10px;
        margin-bottom: 5px;
        background-color: #333;
    }
    
    .mega-menu-item:hover {
        background-color: #404040;
    }
    
    .contact-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .mega-menu-icon {
        width: 40px;
        height: 40px;
    }
    
    .mega-menu-text h4 {
        color: var(--white);
        font-size: 13px;
    }
    
    .mega-menu-text p {
        color: #999;
        font-size: 11px;
    }
    
    .mega-menu-featured {
        background: #1a1a1a;
        border-left: 3px solid var(--primary-blue);
    }
    
    .mega-menu-featured p {
        color: #ccc;
    }
    
    .mega-menu-image,
    .mega-menu-video {
        height: 120px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-section h1 {
        font-size: 36px;
    }
    
    .hero-section p {
        font-size: 16px;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .header-actions .contact-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ===== Floating Social Media Buttons ===== */
.floating-social {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 997;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

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

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

.floating-btn:hover {
    transform: translateX(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.floating-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-btn.facebook {
    background: linear-gradient(135deg, #4267B2, #3b5998);
}

.floating-btn.instagram {
    background: linear-gradient(135deg, #E4405F, #833AB4, #C13584);
}

.floating-btn.linkedin {
    background: linear-gradient(135deg, #0077B5, #00669c);
}

.floating-btn.twitter {
    background: linear-gradient(135deg, #1DA1F2, #0c85d0);
}

.floating-btn.youtube {
    background: linear-gradient(135deg, #FF0000, #cc0000);
}

.floating-btn.phone {
    background: linear-gradient(135deg, var(--bright-yellow), #e6c200);
    color: black;
}

/* Floating WhatsApp CTA */
.floating-whatsapp-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 997;
}

.floating-whatsapp-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-whatsapp-cta a:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp-cta i {
    font-size: 24px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--bright-yellow);
    font-size: 20px;
    cursor: pointer;
    z-index: 996;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--bright-yellow);
    color: var(--black);
    transform: translateY(-5px);
}

/* Mobile Floating Buttons */
@media (max-width: 768px) {
    .floating-social {
        right: 10px;
        gap: 8px;
    }
    
    .floating-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .floating-whatsapp-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-whatsapp-cta a {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .floating-whatsapp-cta span {
        display: none;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ===== Active Nav State ===== */
.nav-link.active-nav {
    color: var(--bright-yellow) !important;
}

.nav-link.active-nav .dropdown-icon {
    transform: rotate(180deg);
}

/* ===== Search Overlay ===== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.active {
    display: flex;
    opacity: 1;
}

.search-container {
    width: 80%;
    max-width: 800px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 20px 60px 20px 20px;
    font-size: 24px;
    border: none;
    border-bottom: 3px solid var(--bright-yellow);
    background: transparent;
    color: white;
    outline: none;
}

.search-input::placeholder {
    color: #666;
}

.search-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.search-close:hover {
    color: var(--bright-yellow);
}

.search-submit {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-blue);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    padding: 10px 15px;
}

.search-submit:hover {
    background: var(--light-blue);
}

/* Live Search Results */
.live-search-results {
    display: none;
    background: white;
    margin-top: 10px;
    max-height: 400px;
    overflow-y: auto;
}

.search-results-list {
    padding: 0;
}

.search-result-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.search-result-link:hover {
    background: #f8f8f8;
}

.search-result-link i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    color: white;
    font-size: 16px;
}

.search-result-link.package i {
    background: var(--bright-yellow);
    color: #333;
}

.search-result-link.blog i {
    background: var(--sky-blue);
}

.search-result-info {
    flex: 1;
}

.search-result-info strong {
    display: block;
    font-size: 15px;
    margin-bottom: 3px;
}

.search-result-info span {
    font-size: 12px;
    color: #666;
}

.search-view-all {
    display: block;
    text-align: center;
    padding: 15px;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.search-view-all:hover {
    background: var(--light-blue);
    color: white;
}

.search-no-results {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.search-no-results i {
    font-size: 40px;
    color: #ddd;
    margin-bottom: 15px;
}

/* ===== Login Required Modal ===== */
.login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-modal {
    background: white;
    padding: 50px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.login-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: #999;
    cursor: pointer;
    transition: var(--transition);
}

.login-modal-close:hover {
    color: #333;
}

.login-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-modal-icon i {
    font-size: 36px;
    color: white;
}

.login-modal h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}

.login-modal p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.login-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.login-modal-buttons .btn {
    flex: 1;
    padding: 15px 25px;
}

@media (max-width: 480px) {
    .login-modal {
        padding: 30px 20px;
    }
    
    .login-modal-buttons {
        flex-direction: column;
    }
    
    .login-modal-buttons .btn {
        width: 100%;
    }
}

/* ===== Development Notice Popup ===== */
.dev-notice-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 4000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.dev-notice-overlay.show {
    display: flex;
}

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

.dev-notice-modal {
    background: var(--black);
    border: 2px solid #dc3545;
    padding: 50px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: modalSlideIn 0.4s ease;
    box-shadow: 0 10px 40px rgba(220, 53, 69, 0.3);
}

.dev-notice-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #ccc;
    cursor: pointer;
    transition: var(--transition);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dev-notice-close:hover {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.dev-notice-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dev-notice-icon i {
    font-size: 40px;
    color: white;
}

.dev-notice-modal h2 {
    font-size: 28px;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.dev-notice-modal p {
    color: #ddd;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.dev-notice-subtext {
    color: #999 !important;
    font-size: 14px !important;
    margin-bottom: 30px !important;
}

.dev-notice-btn {
    background: #dc3545 !important;
    border-color: #dc3545 !important;
    color: white !important;
    padding: 15px 40px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
}

.dev-notice-btn:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

@media (max-width: 480px) {
    .dev-notice-modal {
        padding: 40px 25px;
        margin: 20px;
    }
    
    .dev-notice-modal h2 {
        font-size: 24px;
    }
    
    .dev-notice-modal p {
        font-size: 15px;
    }
    
    .dev-notice-icon {
        width: 70px;
        height: 70px;
    }
    
    .dev-notice-icon i {
        font-size: 35px;
    }
    
    .dev-notice-btn {
        padding: 12px 30px !important;
        font-size: 15px !important;
    }
}

/* ===== Utilities ===== */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 40px;
}

.mb-4 {
    margin-bottom: 40px;
}

.py-5 {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* =============================================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   ============================================= */

/* ===== Tablet (max-width: 1024px) ===== */
@media (max-width: 1024px) {
    .hero-section {
        padding: 120px 20px 60px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .mega-menu {
        position: static;
        width: 100%;
        padding: 0;
        box-shadow: none;
    }
    
    .mega-menu-content {
        flex-direction: column;
        padding: 10px;
    }
    
    .mega-menu-col {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    section {
        padding: 50px 20px;
    }
}

/* ===== Mobile Large (max-width: 768px) ===== */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    /* Header Mobile */
    .main-header {
        padding: 0 15px;
    }
    
    .header-container {
        padding: 0;
    }
    
    .logo span {
        font-size: 20px;
    }
    
    .navbar-toggler {
        display: flex !important;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    
    .navbar-toggler span {
        display: block;
        width: 100%;
        height: 3px;
        background: white;
        transition: var(--transition);
    }
    
    .navbar-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 80px 0 20px;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
    }
    
    .navbar-nav.active {
        left: 0;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .navbar-nav .nav-link {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .header-actions .contact-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .header-actions .search-icon {
        font-size: 18px;
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }
    
    /* Hero Mobile */
    .hero-section {
        padding: 100px 15px 50px;
        min-height: auto;
    }
    
    .hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-content .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    /* Sections Mobile */
    section {
        padding: 40px 15px;
    }
    
    section h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    section p {
        font-size: 14px;
    }
    
    /* Cards Mobile */
    .service-card,
    .feature-card,
    .card {
        margin-bottom: 20px;
    }
    
    /* Grid Mobile */
    .row {
        margin: 0 -10px;
    }
    
    .col-md-3,
    .col-md-4,
    .col-md-6 {
        padding: 0 10px;
        margin-bottom: 20px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 15px 20px;
    }
    
    .footer .row > div {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer h5 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer ul {
        padding-left: 0;
    }
    
    .footer .social-icons {
        justify-content: center;
    }
    
    /* Floating Buttons Mobile */
    .floating-social {
        right: 10px;
        bottom: 80px;
    }
    
    .floating-social a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .back-to-top {
        right: 10px;
        bottom: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    /* Search Overlay Mobile */
    .search-overlay .search-box {
        width: 90%;
    }
    
    .search-input {
        font-size: 18px;
        padding: 15px 50px 15px 15px;
    }
    
    /* Mega Menu Mobile */
    .dropdown-menu.mega-menu {
        position: static !important;
        width: 100%;
        background: #1a1a1a;
        border: none;
        margin: 0;
        padding: 0;
    }
    
    .mega-menu-content {
        display: block;
    }
    
    .mega-menu-col {
        width: 100%;
        padding: 0;
    }
    
    .mega-menu-col h4 {
        padding: 15px 20px;
        margin: 0;
        font-size: 14px;
        background: #252525;
        cursor: pointer;
    }
    
    .mega-menu-col ul {
        display: none;
        padding: 10px 20px;
    }
    
    .mega-menu-col.active ul {
        display: block;
    }
    
    .mega-menu-col li a {
        padding: 10px 0;
        font-size: 13px;
    }
}

/* ===== Mobile Small (max-width: 480px) ===== */
@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    .main-header {
        height: 60px;
    }
    
    .logo span {
        font-size: 18px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 13px;
    }
    
    section h2 {
        font-size: 20px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .header-actions .contact-btn {
        display: none;
    }
    
    /* Cards smaller */
    .service-card,
    .card {
        padding: 20px;
    }
    
    /* Footer compact */
    .footer {
        padding: 30px 15px 15px;
    }
    
    .footer h5 {
        font-size: 14px;
    }
    
    .footer p,
    .footer a {
        font-size: 12px;
    }
    
    /* Floating Buttons smaller */
    .floating-social a,
    .back-to-top {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* ===== Touch Device Optimizations ===== */
@media (hover: none) and (pointer: coarse) {
    /* Increase tap targets */
    .nav-link,
    .dropdown-item,
    .btn,
    a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    
    /* Remove hover effects on touch */
    .service-card:hover,
    .card:hover {
        transform: none;
    }
    
    /* Better tap feedback */
    .btn:active,
    a:active {
        opacity: 0.8;
    }
}

/* ===== Landscape Mode on Mobile ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 80px 20px 40px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        display: none;
    }
}

/* ===== Print Styles ===== */
@media print {
    .main-header,
    .footer,
    .floating-social,
    .back-to-top,
    .navbar-toggler {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
}

