/* ============================================
   PROFESSIONAL FIXES
   Remove glitches, neon colors, improve layouts
   ============================================ */

/* Fix Why Choose Connectra glitching */
.value-propositions {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    margin-top: 2rem !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.value-prop {
    transform: none !important;
    animation: none !important;
    will-change: auto !important;
    padding: 1.5rem !important;
    height: 100% !important;
}

.value-prop.holo-card {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    justify-content: center !important;
    gap: 1rem !important;
    min-height: 180px !important;
}

.value-prop.holo-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(107, 31, 60, 0.15) !important;
    border-color: rgba(212, 175, 55, 0.6) !important;
}

.prop-icon {
    font-size: 1.75rem !important;
    color: #D4AF37 !important;
    margin-bottom: 0.5rem !important;
    width: 3.5rem !important;
    height: 3.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(212, 175, 55, 0.1) !important;
    border-radius: 50% !important;
}

.prop-content {
    flex: 1 !important;
    max-width: 200px !important;
    margin: 0 auto !important;
}

.prop-content h4 {
    margin-bottom: 0.5rem !important;
    color: #D4AF37 !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
}

.prop-content p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0 !important;
}

.about-preview {
    padding: 4rem 0 !important;
}

.about-preview .section-title {
    font-size: 2rem !important;
    margin-bottom: 1rem !important;
}

.about-preview .section-description {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 2rem !important;
    max-width: 800px !important;
}

/* Section titles and neon text styling */
.neon-text {
    color: var(--text-light) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    animation: none !important;
}

h2.neon-text {
    color: #FFFFFF !important;
    font-size: 2.5rem !important;
    font-weight: 600 !important;
    margin-bottom: 1.5rem !important;
    position: relative !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

.about-preview .section-subtitle {
    color: var(--primary-gold) !important;
    font-size: 1.1rem !important;
    margin-bottom: 1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* Remove excessive neon colors */
:root {
    --tech-neon-blue: #D4AF37 !important;
    --tech-neon-purple: #B87333 !important;
    --tech-neon-green: #D4AF37 !important;
}

/* Professional navbar with light gray background */
.navbar {
    background: #efefef !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
    height: 90px !important; /* Keeping increased height for larger logo */
}

.navbar.scrolled {
    background: #efefef !important;
    height: 80px !important;
    transition: all 0.3s ease !important;
}

.nav-link {
    color: var(--brand-navy) !important;
    font-weight: 500 !important;
    position: relative !important;
    padding: 0.5rem 1rem !important;
    opacity: 1 !important;
}

.nav-link::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    width: 0 !important;
    height: 2px !important;
    background: var(--accent-gold) !important;
    transition: all 0.3s ease !important;
    transform: translateX(-50%) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80% !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold) !important;
    opacity: 1 !important;
}

.logo-wrapper {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    padding: 0.75rem 0 !important;
}

.logo-image {
    height: 70px !important; /* Increased logo size */
    width: auto !important;
    transition: all 0.3s ease !important;
    object-fit: contain !important;
    display: block !important;
}

.navbar.scrolled .logo-image {
    height: 60px !important;
}

/* Hide text logo when image is present */
.logo-text {
    display: none !important;
}

/* Professional footer colors */
.footer {
    background: #efefef !important;
    color: var(--text-dark) !important;
    padding: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    font-size: 0.75rem !important;
}

.footer::before {
    display: none !important;
}

.footer-content {
    position: relative !important;
    z-index: 2 !important;
    padding: 1.5rem 2rem !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
}

.footer-columns-wrapper {
    display: flex !important;
    gap: 3rem !important;
    margin-left: auto !important;
}

.footer-column {
    flex: 0 1 auto !important;
    min-width: 160px !important;
}

.footer h4 {
    color: var(--primary-navy) !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.footer-link,
.footer a {
    color: #666666 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-size: 0.8rem !important;
    line-height: 1.5 !important;
    display: block !important;
    margin-bottom: 0.5rem !important;
    white-space: nowrap !important;
}

.footer-link:hover,
.footer a:hover {
    color: var(--primary-burgundy) !important;
    text-decoration: none !important;
    padding-left: 5px !important;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
    background: #e5e5e5 !important;
    padding: 1rem 0 !important;
    margin-top: 2rem !important;
    position: relative !important;
    z-index: 2 !important;
}

.footer-bottom .container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.footer .tech-grid-background {
    opacity: 0.05 !important;
}

.footer .network-nodes {
    opacity: 0.1 !important;
}

.footer-brand {
    position: relative !important;
    padding-left: 20px !important;
    max-width: 250px !important;
}

.footer-logo {
    margin-bottom: 1rem !important;
}

.footer-logo-img {
    height: 60px !important;
    width: auto !important;
    object-fit: contain !important;
    margin-left: -10px !important;
}

.footer-brand::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    height: 100% !important;
    width: 1.5px !important;
    background: var(--primary-gold) !important;
    border-radius: 0.75px !important;
}

.footer-description {
    color: #666666 !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
    font-size: 0.85rem !important;
}

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

.footer .social-link {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: white !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--primary-navy) !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    font-size: 0.85rem !important;
}

.footer .social-link:hover {
    background: var(--primary-navy) !important;
    color: white !important;
    transform: translateY(-3px) !important;
    border-color: var(--primary-navy) !important;
}

.footer-newsletter {
    background: rgba(212, 175, 55, 0.1) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    padding: 0.25rem 0.5rem !important;
    border-radius: 10px !important;
    margin-top: 0.5rem !important;
}

/* Fix preloader - add tech visuals */
.preloader {
    background: linear-gradient(135deg, 
        rgba(44, 62, 95, 0.98) 0%, 
        rgba(107, 31, 60, 0.97) 50%, 
        rgba(44, 62, 95, 0.98) 100%
    ) !important;
}

.preloader-content {
    position: relative !important;
    z-index: 5 !important;
}

.preloader .tech-grid-background {
    opacity: 0.15 !important;
    background-size: 30px 30px !important;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.2) 1px, transparent 1px) !important;
    animation: grid-flow 30s linear infinite !important;
}

.preloader .data-cable {
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.6), 
        rgba(44, 62, 95, 0.6),
        transparent) !important;
    height: 1px !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4) !important;
}

.preloader .data-cable.vertical {
    background: linear-gradient(180deg, 
        transparent, 
        rgba(212, 175, 55, 0.6), 
        rgba(0, 217, 255, 0.6),
        transparent) !important;
    width: 1px !important;
    height: 150px !important;
    animation: cable-flow-vertical 2s ease-in-out infinite !important;
}

.preloader .network-node {
    background: rgba(212, 175, 55, 0.7) !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5) !important;
}

.preloader .network-connection {
    background: linear-gradient(90deg, 
        rgba(212, 175, 55, 0.3), 
        rgba(212, 175, 55, 0.5), 
        rgba(212, 175, 55, 0.3)) !important;
    height: 2px !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2) !important;
}

.preloader-logo {
    color: #FFFFFF !important;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.7) !important;
}

.preloader .tech-pattern-overlay {
    opacity: 0.07 !important;
    background-size: 60px 60px !important;
}

.preloader .loading-text {
    color: #FFFFFF !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5) !important;
}

.preloader .loading-line {
    background: rgba(212, 175, 55, 0.2) !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1) !important;
}

.preloader .loading-progress {
    background: linear-gradient(90deg,
        rgba(212, 175, 55, 0.7),
        rgba(0, 217, 255, 0.7)
    ) !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3) !important;
}

/* Fix services page layout - remove white space */
.service-detail .service-content {
    max-width: 100% !important;
    margin: 0 auto !important;
}

.service-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 3rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    width: 100% !important;
}

.service-description,
.service-features {
    width: 100% !important;
    max-width: 100% !important;
}

/* Remove all CTA sections */
.cta-section,
section.cta {
    display: none !important;
}

/* Professional stat cards */
.stat-3d-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
}

.stat-3d-number {
    background: linear-gradient(135deg, #D4AF37, #B87333) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Professional icon colors */
.icon-tech i {
    color: #D4AF37 !important;
}

/* Global color variables */
:root {
    --primary-navy: #2C3E5F !important;
    --primary-burgundy: #6B1F3C !important;
    --primary-gold: #D4AF37 !important;
    --text-light: #FFFFFF !important;
    --text-dark: #2C3E5F !important;
    --text-muted: rgba(255, 255, 255, 0.8) !important;
    --gradient-primary: linear-gradient(135deg, 
        rgba(44, 62, 95, 0.98),
        rgba(107, 31, 60, 0.97),
        rgba(44, 62, 95, 0.98)
    ) !important;
    --gradient-overlay: linear-gradient(135deg,
        rgba(44, 62, 95, 0.85),
        rgba(107, 31, 60, 0.85)
    ) !important;
}

/* Fix hero section colors and tech visuals */
.hero {
    position: relative !important;
    overflow: hidden !important;
    background: var(--gradient-primary);
}

.video-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.3) !important;
    z-index: 0 !important;
}

/* Enhanced tech grid for hero */
.hero .tech-grid-background {
    opacity: 0.15 !important;
    background-size: 30px 30px !important;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.2) 1px, transparent 1px) !important;
    animation: grid-flow 30s linear infinite !important;
}

/* Enhanced data cables for hero */
.hero-section .data-cable {
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.6), 
        rgba(44, 62, 95, 0.6),
        transparent) !important;
    height: 1px !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4) !important;
}

.hero-section .data-cable.vertical {
    background: linear-gradient(180deg, 
        transparent, 
        rgba(212, 175, 55, 0.6), 
        rgba(0, 217, 255, 0.6),
        transparent) !important;
    width: 1px !important;
    height: 150px !important;
    animation: cable-flow-vertical 2s ease-in-out infinite !important;
}

/* Enhanced network nodes for hero */
.hero-section .network-node {
    background: rgba(212, 175, 55, 0.7) !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5) !important;
}

.hero-section .network-connection {
    background: linear-gradient(90deg, 
        rgba(212, 175, 55, 0.3), 
        rgba(212, 175, 55, 0.5), 
        rgba(212, 175, 55, 0.3)) !important;
    height: 2px !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2) !important;
}

.hero-section .tech-pattern-overlay {
    opacity: 0.07 !important;
    background-size: 60px 60px !important;
}

/* Hero */
.hero {
    height: 100vh !important;
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.hero-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 0 !important;
}

/* Remove other background elements in hero */
.hero .animated-particles,
.hero .floating-shapes,
.hero .gradient-overlay:not(.video-overlay) {
    display: none !important;
}

.video-overlay {
    background: linear-gradient(135deg, 
        rgba(44, 62, 95, 0.85),
        rgba(107, 31, 60, 0.85)
    ) !important;
}

/* Enhanced text styles for hero */
.hero-content {
    position: relative !important;
    z-index: 3 !important;
    width: 100% !important;
    max-width: 1440px !important;
    margin: 0 auto !important;
    padding: 0 max(1rem, 5vw) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    height: 100% !important;
}

.hero-title {
    /* Allow hero title to display for accessibility and SEO */
    display: block !important;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4) !important;
    max-width: min(90%, 800px) !important;
}

/* Hero data packet effects */
.hero-section .data-packet {
    background: rgba(212, 175, 55, 0.8) !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6),
                0 0 40px rgba(212, 175, 55, 0.3) !important;
}

/* Professional section backgrounds: don't force white, keep layout helpers only */
section {
    position: relative !important;
    overflow: hidden !important;
}

section.about-preview,
section.industries {
    background: var(--gradient-primary) !important;
    color: var(--text-light) !important;
}

section.showcase-section {
    background: #f8f9fa !important;
    color: var(--text-dark) !important;
}

/* Section text colors */
section.services .section-title,
section.about-preview .section-title,
section.industries .section-title {
    color: var(--text-light) !important;
}

section.services .section-description,
section.about-preview .section-description,
section.industries .section-description {
    color: var(--text-muted) !important;
}

section.services .section-subtitle,
section.about-preview .section-subtitle,
section.industries .section-subtitle {
    color: var(--primary-gold) !important;
}

/* Professional card backgrounds */
.holo-card,
.stat-3d-card,
.data-panel {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
}

/* Professional button colors */
.cta-button.primary,
.tech-button {
    background: linear-gradient(135deg, #6B1F3C, #2C3E5F) !important;
    border: 2px solid #D4AF37 !important;
}

.cta-button.secondary {
    border: 2px solid #D4AF37 !important;
    color: #2C3E5F !important;
}

/* Remove particle container if too distracting */
.particle-container {
    opacity: 0.5 !important;
}

/* Professional service cards */
.service-card {
    background: #ffffff !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
}

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.5) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
}

/* Professional partner section */
.partners {
    background: var(--gradient-primary) !important;
    color: var(--text-light) !important;
}

.partners-scroll {
    margin: 3rem 0 !important;
    padding: 2rem 0 !important;
    overflow: hidden !important;
    background: #FFFFFF !important;
    position: relative !important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05) !important;
}

.partners-scroll::before,
.partners-scroll::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    width: 100px !important;
    height: 100% !important;
    z-index: 2 !important;
}

.partners-scroll::before {
    left: 0 !important;
    background: linear-gradient(to right, #FFFFFF, transparent) !important;
}

.partners-scroll::after {
    right: 0 !important;
    background: linear-gradient(to left, #FFFFFF, transparent) !important;
}

.partners-scroll-content {
    display: flex !important;
    width: max-content !important;
}

.partners-track {
    display: flex !important;
    align-items: center !important;
    gap: 3rem !important;
    padding: 0 1.5rem !important;
    animation: scroll 30s linear infinite !important;
}

.partner-logo {
    width: 180px !important;
    height: 80px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    filter: none !important;
}

.partner-logo img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
}

/* Override any hover effects and filters from other stylesheets */
.partner-logo:hover {
    filter: none !important;
    transform: none !important;
}

/* Ensure no filters or effects are applied to the images */
.partner-logo img,
.partner-logo img:hover {
    filter: none !important;
    opacity: 1 !important;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Fix mobile menu */
.mobile-menu {
    background: rgba(255, 255, 255, 0.98) !important;
}

/* Compact Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.1) !important;
    background: rgba(26, 36, 56, 0.4) !important;
    padding: 0.35rem 0 !important;
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
    font-size: 0.7rem !important;
}

.footer-bottom .legal-links {
    display: inline-flex !important;
    gap: 0.5rem !important;
    margin: 0 0.5rem !important;
}

.footer-bottom .legal-link {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Certifications removed */

/* Compact Newsletter */
/* Newsletter section removed */

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 0 !important;
    }
    
    .footer-content {
        padding: 2rem 1rem !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .footer-brand {
        flex: 0 0 100% !important;
        margin-bottom: 1rem !important;
        padding-left: 0 !important;
        max-width: none !important;
    }

    .footer-logo-img {
        height: 70px !important;
        margin-left: 0 !important;
    }
    
    .footer-column {
        min-width: 100% !important;
        max-width: none !important;
        margin-bottom: 0 !important;
    }

    .footer h4 {
        font-size: 1rem !important;
        margin-bottom: 0.75rem !important;
    }

    .footer-link,
    .footer a {
        font-size: 0.9rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .footer-bottom {
        text-align: center !important;
        padding: 1rem !important;
    }
    
    .footer-bottom .container {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .footer-bottom .legal-links {
        margin: 0.5rem 0 !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 1rem !important;
    }
}

/* Professional colors for all text */
.section-title {
    color: #2C3E5F !important;
}

.section-subtitle {
    color: #D4AF37 !important;
}

.section-description {
    color: #555 !important;
}

/* Remove glowing effects from data visualization */
.data-bar-fill {
    box-shadow: none !important;
}

/* Professional timeline - centered dots */
.timeline-point {
    background: #8B2F5C !important;
    border-color: #2C3E5F !important;
    box-shadow: 0 0 15px rgba(139, 47, 92, 0.4) !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.timeline-line {
    background: linear-gradient(180deg, 
        transparent, 
        rgba(139, 47, 92, 0.5), 
        rgba(139, 47, 92, 0.5), 
        transparent) !important;
}

/* Ensure tech visuals work across all sections */
.services,
.about-preview,
.partners,
.industries,
.showcase-section {
    position: relative !important;
    overflow: hidden !important;
}

.services::before,
.about-preview::before,
.partners::before,
.industries::before,
.showcase-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: inherit !important;
    z-index: 1 !important;
}

.services .container,
.about-preview .container,
.partners .container,
.industries .container,
.showcase-section .container {
    position: relative !important;
    z-index: 2 !important;
}

.tech-grid-background,
.data-flow-container,
.network-nodes {
    z-index: 0 !important;
    opacity: 1 !important;
}

/* Ensure proper z-indexing for all layers */
.hero .hero-content {
    position: relative !important;
    z-index: 2 !important;
}

.hero .hero-background {
    z-index: 1 !important;
}

.hero .tech-grid-background,
.hero .data-flow-container,
.hero .network-nodes {
    z-index: 0 !important;
}

/* Make tech visuals more visible */
.tech-grid-background {
    opacity: 0.15 !important;
}

.data-cable {
    opacity: 0.6 !important;
}

.network-node {
    opacity: 0.8 !important;
}

/* Fix any layout issues */
/* Hero Section Responsive Styles */
@media (min-aspect-ratio: 16/9) {
    .hero-video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .hero-video-container {
        width: 100% !important;
        height: 100% !important;
    }
}

@media (max-aspect-ratio: 16/9) {
    .hero-video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .hero-video-container {
        width: 100% !important;
        height: 100% !important;
    }
}

@media (max-width: 992px) {
    .value-propositions {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .value-propositions {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .service-grid {
        grid-template-columns: 1fr !important;
    }
    
    .hero-content {
        padding: 0 max(1rem, 3vw) !important;
    }

    .hero-video-container {
        transform: scale(1.2) !important;
    }

    .hero {
        height: 100dvh !important; /* Dynamic viewport height for mobile */
    }
}
