/* styles.css - Complete with Fixed Navigation, Logo Sizes & Product Image Fixes */
/* Removed form-related styles */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-blue: #1a365d;
    --secondary-blue: #2d50a3;
    --accent-blue: #4a6ee0;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #f5f7fa;
    --white: #ffffff;
    --highlight: #ff6b35;
    --whatsapp-green: #25D366;
    --phone-green: #34B7F1;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

section {
    padding: var(--space-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--space-sm);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--highlight);
    border-radius: 2px;
    animation: underlineGrow 1s ease forwards;
}

@keyframes underlineGrow {
    0% { width: 0; }
    100% { width: 80px; }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all var(--transition-medium);
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.text-center {
    text-align: center;
}

/* Animation Classes */
.hover-grow {
    transition: transform var(--transition-medium);
}

.hover-grow:hover {
    transform: scale(1.05);
}

.hover-lift {
    transition: all var(--transition-medium);
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(26, 54, 93, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(26, 54, 93, 0); }
    100% { box-shadow: 0 0 0 0 rgba(26, 54, 93, 0); }
}

/* Loading Screen - Fixed Logo Sizes */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-content {
    text-align: center;
    color: var(--white);
    max-width: 500px;
    width: 100%;
    padding: var(--space-xl);
}

.company-logo-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-xl);
    animation: pulse 2s infinite;
}

.loading-logo-image {
    height: 100px;
    width: auto;
    margin-bottom: var(--space-lg);
    object-fit: contain;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.logo-text-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-main-loading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.2;
    letter-spacing: 2px;
    margin-bottom: var(--space-xs);
    animation: textGlow 2s infinite;
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
    50% { text-shadow: 0 0 15px rgba(255, 255, 255, 0.8); }
}

.logo-sub-loading {
    font-size: 0.875rem;
    letter-spacing: 2px;
    opacity: 0.8;
    text-transform: uppercase;
}

.loading-progress {
    width: 100%;
}

.progress-bar-loading {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.progress-fill-loading {
    height: 100%;
    background: linear-gradient(90deg, var(--highlight), #ff8b5c);
    border-radius: 3px;
    width: 0;
    animation: loadingProgress 2s ease-in-out forwards;
}

.loading-text {
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.9;
}

@keyframes loadingProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-bounce);
    animation: float 3s ease-in-out infinite;
}

.floating-btn:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.whatsapp-btn {
    background-color: var(--whatsapp-green);
}

.phone-btn {
    background-color: var(--phone-green);
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
    transform: translateX(-10px) translateY(-50%);
}

.floating-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-blue);
    color: white;
    padding: 8px 12px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    transition: all var(--transition-medium);
    pointer-events: none;
    box-shadow: var(--shadow-md);
}

.floating-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--primary-blue);
}

/* Header - FIXED NAVIGATION ALIGNMENT */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-medium);
    backdrop-filter: blur(10px);
    height: 80px;
    display: flex;
    align-items: center;
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    height: 70px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Logo - Fixed Size and Alignment */
.logo {
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-blue);
    transition: transform var(--transition-medium);
    gap: 12px;
    height: 100%;
}

.logo a:hover {
    transform: scale(1.02);
}

.logo-image {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-medium);
}

.logo a:hover .logo-image {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-main {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.2;
    white-space: nowrap;
}

.logo-sub {
    font-size: 0.7rem;
    letter-spacing: 1px;
    opacity: 0.8;
    white-space: nowrap;
}

/* Navigation - FIXED ALIGNMENT */
.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    height: 100%;
    margin-left: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 4px;
    height: 100%;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    text-decoration: none;
    color: var(--dark-gray);
    padding: 8px 14px;
    position: relative;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    height: 100%;
    align-items: center;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
    background-color: rgba(26, 54, 93, 0.05);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 3px;
    background-color: var(--highlight);
    border-radius: 2px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { width: 0; }
    to { width: 25px; }
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 100%;
}

.dropdown-toggle .fa-chevron-down {
    font-size: 0.7rem;
    transition: transform var(--transition-medium);
}

.dropdown:hover .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-medium);
    z-index: 100;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 16px;
    color: var(--dark-gray);
    text-decoration: none;
    transition: all var(--transition-fast);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.85rem;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: var(--light-gray);
    color: var(--primary-blue);
    padding-left: 20px;
}

.header-cta {
    flex-shrink: 0;
    margin-left: var(--space-sm);
}

.btn-quote-nav {
    padding: 8px 16px;
    font-size: 0.85rem;
    white-space: nowrap;
    min-width: 110px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    padding: 0;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-blue);
    position: relative;
    transition: background-color var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--primary-blue);
    left: 0;
    transition: transform var(--transition-medium);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-toggle.active .hamburger {
    background-color: transparent;
}

.mobile-toggle.active .hamburger::before {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active .hamburger::after {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
    background-color: #1a1a2e; /* Fallback background */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(44, 62, 80, 0.7) 100%);
    z-index: 2;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Remove video-specific styles */
.hero-video {
    display: none; /* This hides any video element */
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        min-height: 600px;
        height: 80vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-location {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}
/* About Preview Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.about-text p {
    margin-bottom: var(--space-md);
    font-size: 1.125rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.feature-icon-item {
    text-align: center;
    padding: var(--space-lg);
    background-color: var(--light-gray);
    border-radius: var(--radius-lg);
    transition: all var(--transition-bounce);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-md);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--space-md);
    transition: transform var(--transition-medium);
}

.feature-icon-item:hover .feature-icon-wrapper {
    transform: rotate(15deg) scale(1.1);
}

.feature-icon-wrapper i {
    font-size: 1.75rem;
    color: var(--white);
}

.feature-icon-item h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: var(--space-xs);
}

.feature-icon-item p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Loading Messages Section */
.loading-messages-section {
    background-color: var(--light-gray);
    padding: var(--space-lg) 0;
    overflow: hidden;
}

.loading-messages-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 60px;
}

.loading-messages-track {
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    animation: slideMessages 30s linear infinite;
}

.loading-message {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-lg);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    margin-right: var(--space-lg);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-blue);
    border: 1px solid rgba(26, 54, 93, 0.1);
    min-width: max-content;
}

.loading-message i {
    margin-right: 10px;
    font-size: 1.2rem;
}

@keyframes slideMessages {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Trust Builders Section */
.trust-builders-section {
    background-color: var(--light-gray);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.trust-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
    animation: cardAppear 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.trust-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto var(--space-md);
    transition: all var(--transition-medium);
}

.trust-card:hover .trust-icon {
    transform: rotate(15deg) scale(1.1);
    background: linear-gradient(135deg, var(--highlight), #ff8b5c);
}

.trust-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.trust-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: var(--space-sm);
}

.trust-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Key Features Emoji List in Products */
.key-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: var(--space-md);
}

.key-feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--light-gray);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-blue);
    transition: all var(--transition-fast);
}

.key-feature-item:hover {
    background-color: #e0e7ff;
    transform: translateY(-2px);
}

.key-feature-item .emoji {
    font-size: 1rem;
}

/* Client Logos Section */
.client-logos-section {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.client-logos-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: var(--space-md) 0;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.client-logos-track {
    display: flex;
    animation: slideLogos 40s linear infinite;
    padding: var(--space-md) 0;
}

.client-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 var(--space-lg);
    min-width: 200px;
    text-align: center;
    transition: all var(--transition-medium);
}

.client-logo-name {
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: var(--space-sm);
    font-size: 0.9rem;
}

.client-logo-item:hover {
    transform: translateY(-5px);
}

.client-logo-item:hover .client-logo-name {
    color: var(--highlight);
}

@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Products Section - Updated Filter */
.product-filter {
    margin-bottom: var(--space-xl);
    text-align: center;
}

.category-filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.category-filter-btn {
    padding: 12px 20px;
    border: 2px solid var(--light-gray);
    background-color: var(--white);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--medium-gray);
    cursor: pointer;
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.category-filter-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.category-filter-btn.active {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.category-filter-btn i {
    font-size: 1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-lg);
}

.product-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: cardAppear 0.6s ease forwards;
}

@keyframes cardAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* FIXED: Product Image Styles - Maintain Aspect Ratio */
.product-image {
    height: 250px; /* Increased height for better visibility */
    background: linear-gradient(135deg, var(--light-gray), #e8eef9);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Changed from cover to contain to show full image */
    transition: transform var(--transition-medium);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(26, 54, 93, 0.1));
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.product-image-overlay i {
    font-size: 3rem;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform var(--transition-medium);
}

.product-card:hover .product-image-overlay {
    opacity: 1;
}

.product-card:hover .product-image-overlay i {
    transform: scale(1);
}

/* Fallback for missing images */
.product-image img:not([src]) {
    display: none;
}

.product-image img:not([src]) + .product-image-overlay {
    opacity: 1;
}

.product-image img:not([src]) + .product-image-overlay i {
    transform: scale(1);
}

.product-image img[src=""] {
    display: none;
}

.product-image img[src=""] + .product-image-overlay {
    opacity: 1;
}

.product-image img[src=""] + .product-image-overlay i {
    transform: scale(1);
}

.product-content {
    padding: var(--space-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: var(--space-sm);
}

.product-description {
    color: var(--medium-gray);
    margin-bottom: var(--space-md);
    line-height: 1.6;
    flex-grow: 1;
}

/* Specification Dropdown */
.spec-dropdown, .features-dropdown {
    margin-bottom: var(--space-md);
}

.spec-toggle, .features-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: var(--light-gray);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all var(--transition-medium);
}

.spec-toggle:hover, .features-toggle:hover {
    background-color: #e0e7ff;
}

.spec-toggle .fa-chevron-down, .features-toggle .fa-chevron-down {
    transition: transform var(--transition-medium);
}

.spec-toggle.active .fa-chevron-down, .features-toggle.active .fa-chevron-down {
    transform: rotate(180deg);
}

.spec-content, .features-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.spec-content.active, .features-content.active {
    max-height: 1000px;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.spec-icon {
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spec-icon i {
    color: var(--primary-blue);
    font-size: 1rem;
}

.spec-details h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 2px;
}

.spec-details p {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

/* Features Dropdown Content */
.feature-highlight {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-highlight:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.feature-highlight .feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-highlight .feature-icon i {
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.feature-highlight .feature-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.feature-highlight .feature-details p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.5;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-lg);
}

.feature-card {
    text-align: center;
    padding: var(--space-xl);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-bounce);
    opacity: 0;
    transform: translateY(20px);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: cardAppear 0.6s ease forwards;
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-gray), #e8eef9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto var(--space-lg);
    transition: all var(--transition-medium);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    transform: scale(1.1) rotate(10deg);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
    transition: color var(--transition-medium);
}

.feature-card:hover .feature-icon i {
    color: var(--white);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: var(--space-sm);
}

.feature-text {
    color: var(--medium-gray);
    line-height: 1.6;
    flex-grow: 1;
}

/* Technology & Safety Section */
.tech-safety {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.tech-safety::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%23ffffff" opacity="0.1"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.tech-list {
    margin-top: var(--space-lg);
}

.tech-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background-color: var(--white);
    border-radius: var(--radius-md);
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-sm);
    animation: slideInLeft 0.6s ease forwards;
    opacity: 0;
}

.tech-item:nth-child(2) {
    animation-delay: 0.2s;
}

.tech-item:nth-child(3) {
    animation-delay: 0.4s;
}

.tech-item:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: var(--shadow-md);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: var(--space-md);
    flex-shrink: 0;
}

.tech-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.tech-details h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: var(--space-xs);
}

.tech-details p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.safety-progress {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    animation: slideInRight 0.6s ease 0.2s both;
}

.safety-progress h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: var(--space-lg);
}

.progress-item {
    margin-bottom: var(--space-lg);
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-xs);
    font-weight: 500;
}

.progress-value {
    color: var(--primary-blue);
    font-weight: 600;
}

.progress-bar {
    height: 10px;
    background-color: var(--light-gray);
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--highlight), #ff8b5c);
    border-radius: 5px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-bounce);
    text-align: center;
    animation: cardAppear 0.6s ease forwards;
    opacity: 0;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-gray), #e8eef9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto var(--space-lg);
    transition: all var(--transition-medium);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    transform: scale(1.1) rotate(10deg);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
    transition: color var(--transition-medium);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: var(--space-md);
}

.service-card p {
    color: var(--medium-gray);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    margin-bottom: var(--space-xs);
    position: relative;
    padding-left: var(--space-md);
    line-height: 1.5;
    transition: transform var(--transition-medium);
}

.service-features li:hover {
    transform: translateX(5px);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--highlight);
    font-weight: bold;
}

/* Industries Section */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.industry-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-bounce);
    text-align: center;
    animation: cardAppear 0.6s ease forwards;
    opacity: 0;
}

.industry-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-gray), #e8eef9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto var(--space-lg);
    transition: all var(--transition-medium);
}

.industry-card:hover .industry-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    transform: scale(1.1) rotate(10deg);
}

.industry-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
    transition: color var(--transition-medium);
}

.industry-card:hover .industry-icon i {
    color: var(--white);
}

.industry-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: var(--space-md);
}

.industry-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,100 L100,0 L100,100 Z" fill="%23ffffff" opacity="0.05"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    animation: slideInLeft 0.8s ease;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.6;
    animation: slideInRight 0.8s ease 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.cta-content .btn {
    background-color: var(--highlight);
    color: var(--white);
    border: none;
    min-width: 200px;
}

.cta-content .btn:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-5px) scale(1.05);
}

/* Add this to your styles.css file, replacing the existing .contact-section styles */

/* Add this to your styles.css file - Emoji Contact Section Design */

/* Add this to your styles.css - Minimal Emoji Contact Section */

/* Minimal Contact Section */
.minimal-contact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

/* Section Header with Minimal Emoji */
.minimal-contact-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.minimal-contact-header .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: var(--space-sm);
}

.header-emoji {
    font-size: 1.8rem;
    color: var(--primary-blue);
    animation: gentleBounce 2s ease-in-out infinite;
}

@keyframes gentleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.minimal-contact-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Minimal Contact Grid */
.minimal-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.minimal-contact-card {
    background: var(--white);
    border-radius: 16px;
    padding: var(--space-xl);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(26, 54, 93, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.minimal-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(26, 54, 93, 0.2);
}

/* Card Header with Single Emoji */
.card-header-minimal {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.single-emoji {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e8f0ff, #d4e2ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.minimal-contact-card:hover .single-emoji {
    transform: scale(1.05);
    background: linear-gradient(135deg, #d4e2ff, #c1d4ff);
}

.card-title-minimal h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.card-title-minimal p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Contact Items with Icons */
.minimal-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item-minimal {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: padding-left 0.2s ease;
}

.contact-item-minimal:hover {
    padding-left: 5px;
}

.contact-item-minimal:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.item-icon {
    color: var(--accent-blue);
    font-size: 1.1rem;
    margin-top: 2px;
    min-width: 24px;
}

.item-content-minimal h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 6px;
}

.item-content-minimal p,
.item-content-minimal a {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.5;
    text-decoration: none;
}

.item-content-minimal a {
    color: var(--primary-blue);
    font-weight: 500;
    transition: color 0.2s ease;
}

.item-content-minimal a:hover {
    color: var(--highlight);
}

/* Action Button with Small Emoji */
.minimal-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: var(--space-lg);
    cursor: pointer;
}

.minimal-action-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 54, 93, 0.2);
}

.minimal-action-btn .btn-emoji {
    font-size: 1.1rem;
    animation: subtlePulse 2s infinite;
}

@keyframes subtlePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.minimal-action-btn.whatsapp {
    background: var(--whatsapp-green);
}

.minimal-action-btn.whatsapp:hover {
    background: #1bd760;
}

.minimal-action-btn.call {
    background: var(--phone-green);
}

.minimal-action-btn.call:hover {
    background: #2aa5d4;
}

/* Business Hours Card with Single Emoji */
.business-hours-minimal {
    background: linear-gradient(135deg, #f0f7ff, #e6f0ff);
    border: 1px solid rgba(26, 54, 93, 0.1);
}

.business-hours-minimal .single-emoji {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
}

.hours-list-minimal {
    display: grid;
    gap: var(--space-md);
}

.hour-item-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    border: 1px solid rgba(26, 54, 93, 0.05);
    transition: all 0.2s ease;
}

.hour-item-minimal:hover {
    background: white;
    transform: translateX(3px);
}

.hour-day-minimal {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--dark-gray);
}

.hour-day-minimal i {
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.hour-time-minimal {
    font-weight: 600;
    color: var(--primary-blue);
}

.hour-item-minimal.emergency {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.2);
}

.hour-item-minimal.emergency .hour-time-minimal {
    color: var(--highlight);
}

/* Location Section with Minimal Design */
.location-section-minimal {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 54, 93, 0.1);
    margin-top: var(--space-lg);
}

.location-header-minimal {
    padding: var(--space-lg);
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.location-header-minimal i {
    font-size: 1.3rem;
}

.location-header-minimal h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.location-content-minimal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    padding: var(--space-xl);
}

.location-details-minimal {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.location-detail-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.location-detail-item i {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-top: 3px;
    min-width: 24px;
}

.location-detail-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 6px;
}

.location-detail-item p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.location-map-minimal {
    background: linear-gradient(135deg, #f5f9ff, #e8f0ff);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    text-align: center;
}

.location-map-minimal i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: var(--space-md);
    animation: gentleFloat 3s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.location-map-minimal h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: var(--space-xs);
}

.location-map-minimal p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

/* Responsive Design */
@media (max-width: 992px) {
    .minimal-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-content-minimal {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .minimal-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .minimal-contact-card {
        padding: var(--space-lg);
    }
    
    .card-header-minimal {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .single-emoji {
        margin: 0 auto;
    }
    
    .contact-item-minimal {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .item-icon {
        margin: 0 auto;
    }
    
    .location-content-minimal {
        padding: var(--space-lg);
    }
    
    .header-emoji {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .minimal-contact-header .section-title {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .single-emoji {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .card-title-minimal h3 {
        font-size: 1.2rem;
    }
    
    .location-header-minimal {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
        padding: var(--space-md);
    }
    
    .location-detail-item {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .minimal-action-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}
/* Footer - Updated with Logo Image */
.main-footer {
    background: linear-gradient(135deg, #0a1a3a, #1a365d);
    color: var(--white);
    padding: var(--space-xl) 0 0;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--highlight), #ff8b5c);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
    gap: var(--space-sm);
}

.footer-logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-main {
    color: var(--white);
    font-size: 1.25rem;
}

.footer-logo .logo-sub {
    color: rgba(255, 255, 255, 0.8);
}

.footer-about {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
}

.footer-contact-info {
    margin-bottom: var(--space-md);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-contact-item i {
    color: var(--highlight);
    width: 16px;
}

.footer-contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
    color: var(--highlight);
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-bounce);
}

.social-icon:hover {
    background-color: var(--highlight);
    transform: translateY(-5px) scale(1.1);
}

.social-icon.whatsapp:hover {
    background-color: var(--whatsapp-green);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--highlight);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--transition-medium);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--highlight);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--highlight);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-lg) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    opacity: 0.8;
    font-size: 0.9rem;
}

.design-credit {
    margin-top: 5px;
    font-size: 0.8rem;
    opacity: 0.7;
}

.design-credit strong {
    color: var(--highlight);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--highlight);
}

.footer-legal a i {
    font-size: 0.8rem;
}

/* Updated button styles for Get Quote buttons */
.header-cta .btn,
.hero-actions .btn,
.product-card .btn,
.text-center .btn,
.cta-buttons .btn {
    cursor: pointer;
}

.product-quote-btn {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border: 2px solid var(--primary-blue);
    background-color: transparent;
    color: var(--primary-blue);
    transition: all var(--transition-medium);
    width: 100%;
    margin-top: auto;
}

.product-quote-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 var(--space-lg);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-content,
    .tech-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-link {
        padding: var(--space-sm) var(--space-sm);
    }
    
    .logo-image {
        height: 48px;
    }
    
    .logo-main {
        font-size: 1.2rem;
    }
    
    .logo-sub {
        font-size: 0.65rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .loading-message {
        font-size: 1rem;
        padding: var(--space-xs) var(--space-md);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section {
        padding: var(--space-lg) 0;
    }
    
    .hero {
        min-height: 80vh;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .logo-image {
        height: 42px;
    }
    
    .logo-main {
        font-size: 1.1rem;
    }
    
    .logo-sub {
        font-size: 0.6rem;
    }
    
    .loading-logo-image {
        height: 80px;
    }
    
    .logo-main-loading {
        font-size: 1.8rem;
    }
    
    .logo-sub-loading {
        font-size: 0.8rem;
    }
    
    /* Mobile Navigation */
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow-md);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--space-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-medium);
        z-index: 1000;
        max-height: 80vh;
        overflow-y: auto;
        height: auto;
        margin-left: 0;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        margin-bottom: var(--space-lg);
        align-items: flex-start;
        height: auto;
        gap: 0;
    }
    
    .nav-link {
        display: block;
        padding: var(--space-sm) 0;
        width: 100%;
        height: auto;
    }
    
    .nav-link.active::after {
        left: 0;
        transform: none;
        width: 40px;
    }
    
    .dropdown {
        height: auto;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-medium);
        margin-left: var(--space-md);
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 300px;
        margin-top: 10px;
    }
    
    .dropdown-item {
        padding-left: 30px;
        border-bottom: none;
    }
    
    .header-cta {
        width: 100%;
        margin-left: 0;
    }
    
    .header-cta .btn {
        width: 100%;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .services-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .category-filter-container {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: var(--space-sm);
    }
    
    .loading-messages-container {
        height: 50px;
    }
    
    .loading-message {
        font-size: 0.9rem;
    }
    
    /* Responsive adjustments for product images */
    .product-image {
        height: 200px;
    }
    
    .product-image-overlay i {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .logo-main {
        font-size: 1rem;
    }
    
    .logo-image {
        height: 38px;
    }
    
    .logo-main-loading {
        font-size: 1.6rem;
    }
    
    .logo-sub-loading {
        font-size: 0.75rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-tooltip {
        display: none;
    }
    
    .loading-messages-track {
        animation-duration: 40s;
    }
    
    /* Responsive adjustments for product images */
    .product-image {
        height: 180px;
    }
}

/* Image Fallback Styles */
.product-image img[src*="C:\\"],
.product-image img[src*="images/"]:not([src*=".jpg"]):not([src*=".jpeg"]):not([src*=".png"]):not([src*=".gif"]) {
    display: none;
}

.product-image img:not([src]),
.product-image img[src=""] {
    display: none;
}

.product-image:has(img:not([src])) .product-image-overlay,
.product-image:has(img[src=""]) .product-image-overlay {
    opacity: 1;
}

.product-image:has(img:not([src])) .product-image-overlay i,
.product-image:has(img[src=""]) .product-image-overlay i {
    transform: scale(1);
}

