/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    will-change: auto;
}

/* Prevent automatic link detection styling */
a[href^="tel:"],
a[href^="mailto:"] {
    color: inherit;
    text-decoration: none;
}

/* Disable automatic link detection for specific elements */
.credential-value,
.footer-contact-item span,
.contact-text p {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

:root {
    --primary-blue: #1e40af;
    --secondary-blue: #3b82f6;
    --light-blue: #60a5fa;
    --dark-blue: #1e3a8a;
    --electric-blue: #0ea5e9;
    --black: #0f0f0f;
    --dark-gray: #1f2937;
    --light-gray: #f8fafc;
    --white: #ffffff;
    --electric-accent: #3b82f6;
    --shadow: rgba(0, 0, 0, 0.15);
    --text-dark: #111827;
    --text-light: #64748b;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--light-blue) 100%);
    --gradient-dark: linear-gradient(135deg, var(--black) 0%, var(--dark-blue) 100%);
    
    /* Neon glass effect variables */
    --hue1: 210; /* Blue hue */
    --hue2: 195; /* Cyan-blue hue */
    --border: 1px;
    --border-color: hsl(var(--hue2), 30%, 25%);
    --radius: 20px;
    --ease: cubic-bezier(0.5, 1, 0.89, 1);
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

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

/* Performance Optimizations */
* {
    will-change: auto;
}

.hero,
.hero-background,
.hero-particles,
.floating-element {
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    transform: translate3d(0, 0, 0);
}

.navbar.scrolled {
    background: rgba(15, 15, 15, 0.98);
    box-shadow: 0 4px 30px rgba(30, 64, 175, 0.3);
    border-bottom: 1px solid rgba(59, 130, 246, 0.4);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 55px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

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

.logo-text {
    color: var(--white);
    font-weight: 800;
    font-size: 1.4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Montserrat', sans-serif;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Electrical Animation Background */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0f1c; /* Dark background for electrical effect */
    overflow: hidden;
    padding: 0 20px;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-background {
    display: none;
}

.hero-particles {
    display: none;
}

.hero-grid {
    display: none;
}

.hero-overlay {
    display: none;
}

.hero-layout {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    animation: heroFadeIn 1s ease;
}

.hero-content {
    flex: 1;
    color: var(--white);
    text-align: left;
    max-width: 600px;
    padding-right: 3rem;
    position: relative;
}

/* Remove all neon glass effects */
.hero-content::before,
.hero-content::after {
    display: none;
}

.hero-logo-side {
    flex: 0 0 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-logo-container {
    position: relative;
    display: inline-block;
}

/* Simplified logo with subtle glow */
.hero-logo {
    height: 380px;
    animation: logoFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.6));
    transform: translate3d(0, 0, 0);
    position: relative;
    z-index: 2;
}

/* Remove logo glow effects */
.logo-glow,
.logo-glow::before,
.logo-glow::after {
    display: none;
}

/* Remove stat item neon effects */
.stat-item {
    text-align: center;
    border-radius: 16px;
    border: 2px solid var(--primary-blue);
    padding: 1.5rem;
    min-width: 180px;
    position: relative;
    overflow: hidden;
    background: rgba(30, 64, 175, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.2);
    transition: all 0.3s ease;
}

.stat-item::before {
    display: none;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--electric-accent);
    box-shadow: 0 12px 40px rgba(30, 64, 175, 0.4);
}

.stat-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 1;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.2rem;
    line-height: 1.4;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Remove keyframe animations for neon effects */
@keyframes glassAppear {
    0%, 100% { opacity: 0; }
}

@keyframes rotateGlow {
    0%, 100% { transform: rotate(0deg); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0; }
}

/* Removed invalid keyframe animations that are no longer needed */

.hero-title {
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.title-tagline {
    display: block;
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--electric-accent);
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-features {
    display: none;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.feature-item:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.3);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    transform: translateY(-3px);
}

.cta-button.primary:hover {
    box-shadow: 0 12px 40px rgba(30, 64, 175, 0.5);
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-button .button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.cta-button .button-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cta-button.primary .button-icon svg {
    stroke: var(--white);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 1s ease 1.2s both;
}

.scroll-indicator {
    display: none;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
    animation: mouseFloat 2s ease-in-out infinite;
}

.mouse-wheel {
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 2s ease-in-out infinite;
}

/* Optimized Floating Elements - Reduced count and simplified animations */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    opacity: 0.4;
    animation: simpleFloat 8s ease-in-out infinite;
    transform: translate3d(0, 0, 0);
}

.bolt1 {
    top: 20%;
    left: 10%;
    color: var(--electric-accent);
    animation-delay: 0s;
}

.bolt2 {
    top: 60%;
    right: 15%;
    color: var(--secondary-blue);
    animation-delay: 4s;
}

.gear1 {
    top: 40%;
    right: 10%;
    color: var(--primary-blue);
    animation: simpleRotate 12s linear infinite;
}

/* Remove bolt3 and gear2 to reduce animation load */
.bolt3,
.gear2 {
    display: none;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--black);
    position: relative;
    color: var(--white);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    position: relative;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin: 0 auto 1.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: stretch;
}

.service-card:nth-child(1) {
    grid-column: 1 / 3;
}

.service-card:nth-child(2) {
    grid-column: 3 / 5;
}

.service-card:nth-child(3) {
    grid-column: 5 / 7;
}

.service-card:nth-child(4) {
    grid-column: 2 / 4;
}

.service-card:nth-child(5) {
    grid-column: 4 / 6;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(20px);
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
    border-color: var(--secondary-blue);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 16px;
    position: relative;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 34px;
    height: 34px;
    color: var(--white);
}

.service-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    min-height: 80px;
    display: flex;
    align-items: center;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 28px;
    font-size: 16px;
    min-height: 110px;
    display: flex;
    align-items: flex-start;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
    padding: 0;
}

.service-features li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:before {
    content: '✓';
    color: var(--secondary-blue);
    font-weight: bold;
    margin-right: 14px;
    font-size: 18px;
}

.get-quote-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin-top: auto;
}

.get-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

/* Hover effect for icons */
.service-card:hover .service-icon {
    background: var(--gradient-dark);
    transform: scale(1.05);
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: var(--white);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-divider {
    background: var(--gradient-primary);
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-scroll-container {
    position: relative;
    margin-top: 4rem;
    overflow: hidden;
    border-radius: 20px;
}

/* Scroll indicator for testimonials */
.testimonials-scroll-hint {
    text-align: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.testimonials-scroll-hint svg {
    width: 20px;
    height: 20px;
    animation: scrollHint 2s ease-in-out infinite;
}

.testimonials-grid {
    gap: 1rem;
    padding: 0.5rem 1rem;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    display: inline-block;
    white-space: initial;
    min-width: 280px;
    width: 280px;
    height: 300px;
    padding: 1.5rem;
    margin-right: 1rem;
    vertical-align: top;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--electric-accent);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    overflow: hidden;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.star {
    width: 18px;
    height: 18px;
    color: #fbbf24;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-size: 0.95rem;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--white);
    flex-shrink: 0;
    font-size: 1rem;
}

.author-info {
    flex: 1;
    min-width: 0;
}

.author-info h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.author-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Testimonials Navigation Arrows */
.testimonials-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 15, 15, 0.8);
    border: 2px solid rgba(59, 130, 246, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.testimonials-nav:hover {
    background: var(--gradient-primary);
    border-color: var(--electric-accent);
    transform: translateY(-50%) scale(1.1);
}

.testimonials-nav svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.testimonials-nav-prev {
    left: 20px;
}

.testimonials-nav-next {
    right: 20px;
}

/* Mobile testimonials scroll indicator */
.testimonials-mobile-scroll-indicator {
    display: none;
    text-align: center;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* About Section Updates */
.about {
    padding: 100px 0;
    background: var(--black);
    position: relative;
    color: var(--white);
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(30, 64, 175, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: stretch;
    opacity: 0;
    transform: translateY(30px);
}

.about-layout.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s ease;
}

.about .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.about .section-divider {
    margin-left: 0;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--secondary-blue);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    height: 100%;
}

.stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--black);
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--primary-blue);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--electric-accent);
    box-shadow: 0 10px 40px rgba(30, 64, 175, 0.4);
}

.stat-card:hover::before {
    opacity: 0.1;
}

.stat-card .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat-card .stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--light-blue);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.about-visual {
    display: none;
}

.about-image-container {
    display: none;
}

/* Contact Section Updates */
.contact {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
    position: relative;
}

.contact .section-title {
    color: var(--white);
    text-align: left;
    margin-bottom: 1rem;
}

.contact .section-divider {
    margin-left: 0;
    margin-bottom: 1.5rem;
}

.contact-intro {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(30px);
}

.contact-layout.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s ease;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.contact-text h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(20px);
}

.form-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-blue);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.form-submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

/* Animations */
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes logoFloat {
    0%, 100% { transform: translate3d(0, 0px, 0); }
    50% { transform: translate3d(0, -10px, 0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes mouseFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes wheelScroll {
    0% { opacity: 1; transform: translateY(0) translateX(-50%); }
    100% { opacity: 0; transform: translateY(15px) translateX(-50%); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.4; }
}

@keyframes simpleFloat {
    0%, 100% { transform: translate3d(0, 0px, 0); }
    50% { transform: translate3d(0, -15px, 0); }
}

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

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 15, 15, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(30, 64, 175, 0.5);
        padding: 2rem 0;
        backdrop-filter: blur(20px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .logo img {
        height: 65px;
    }
    
    .logo-text {
        display: block;
        font-size: 1.3rem;
        font-weight: 800;
    }
    
    /* Hero Mobile Layout */
    .hero {
        padding: 0 15px;
        text-align: center;
        min-height: 100vh;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-layout {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding: 80px 0 40px;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        text-align: center;
        padding-right: 0;
        max-width: none;
        order: 2;
    }
    
    .hero-logo-side {
        flex: none;
        order: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-logo {
        height: 200px;
        animation: logoFloat 4s ease-in-out infinite;
    }
    
    .logo-glow {
        width: 300px;
        height: 300px;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-tagline {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        text-align: center;
        max-width: 90%;
        margin: 0 auto 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 24px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .stat-item {
        text-align: center;
        padding: 1.25rem;
        min-width: 150px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Mobile scroll indicator - positioned on the right */
    .scroll-indicator {
        position: absolute;
        bottom: 30px;
        right: 20px;
        left: auto;
        transform: none;
        z-index: 4;
        text-align: center;
    }
    
    .scroll-text {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .mouse {
        width: 24px;
        height: 40px;
    }
    
    .mouse-wheel {
        width: 3px;
        height: 8px;
        top: 8px;
    }
    
    /* Section Mobile Styles */
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Services Mobile */
    .services-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3),
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: 1;
    }
    
    .service-card {
        padding: 30px 20px;
        min-height: 400px;
    }
    
    .service-title {
        font-size: 22px;
        min-height: 70px;
    }
    
    .service-description {
        font-size: 15px;
        min-height: 95px;
    }
    
    .service-features li {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .get-quote-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    /* Portfolio Mobile */
    .portfolio-scroll-container {
        margin-top: 2rem;
        overflow: visible;
    }
    
    .scroll-hint {
        font-size: 0.85rem;
    }
    
    .portfolio-gallery {
        gap: 1rem;
        padding: 0.5rem 1rem;
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
    
    .portfolio-gallery::-webkit-scrollbar {
        display: none;
    }
    
    .portfolio-item {
        display: inline-block;
        white-space: initial;
        min-width: 280px;
        width: 280px;
        height: 220px;
        margin-right: 1rem;
        vertical-align: top;
    }
    
    .gallery-nav {
        display: none;
    }
    
    .mobile-scroll-indicator {
        display: block;
        margin-top: 1rem;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.85rem;
        text-align: center;
    }
    
    .portfolio-cta {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .portfolio-cta h3 {
        font-size: 1.5rem;
    }
    
    .portfolio-cta p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }
    
    /* Testimonials Mobile */
    .testimonials-scroll-container {
        margin-top: 2rem;
        overflow: visible;
    }
    
    .testimonials-scroll-hint {
        font-size: 0.85rem;
    }
    
    .testimonials-grid {
        gap: 1rem;
        padding: 0.5rem 1rem;
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
    
    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }
    
    .testimonial-card {
        display: inline-block;
        white-space: initial;
        min-width: 280px;
        width: 280px;
        height: 300px;
        padding: 1.5rem;
        margin-right: 1rem;
        vertical-align: top;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        -webkit-line-clamp: 4;
        line-height: 1.4;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .testimonials-nav {
        display: none;
    }
    
    .testimonials-mobile-scroll-indicator {
        display: block;
        text-align: center;
        margin-top: 1rem;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.85rem;
    }
    
    /* About Mobile */
    .about-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: start;
        text-align: center;
    }
    
    .about .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .about .section-divider {
        margin: 0 auto 1.5rem;
    }
    
    .about-content {
        order: 1;
        text-align: center;
    }
    
    .intro-text {
        text-align: center;
    }
    
    .about-text p {
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 1rem;
        order: 2;
        height: auto;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
        min-height: 140px;
    }
    
    .stat-card .stat-number {
        font-size: 2.25rem;
    }
    
    .stat-card .stat-label {
        font-size: 0.75rem;
    }
    
    /* Contact Mobile */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact .section-title {
        text-align: center;
    }
    
    .contact .section-divider {
        margin: 0 auto 1.5rem;
    }
    
    .contact-intro {
        text-align: center;
    }
    
    .contact-details {
        gap: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .contact-text {
        text-align: center;
    }
    
    .contact-text h3 {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .contact-text p {
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .form-title {
        text-align: center;
    }
    
    /* Ensure floating elements are visible but reduced */
    .floating-element {
        font-size: 1.5rem;
        opacity: 0.3;
    }
    
    .floating-element svg {
        width: 24px;
        height: 24px;
    }
    
    /* Adjust positions for mobile */
    .bolt1 {
        top: 10%;
        left: 5%;
    }
    
    .bolt2 {
        top: 80%;
        right: 5%;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 2rem;
    }
    
    .title-tagline {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-logo {
        height: 180px;
    }
    
    .logo-glow {
        width: 280px;
        height: 280px;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .feature-item {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        width: 100%;
        max-width: 280px;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .scroll-indicator {
        right: 15px;
        bottom: 20px;
    }
    
    .mouse {
        width: 20px;
        height: 35px;
    }
    
    .mouse-wheel {
        width: 2px;
        height: 6px;
        top: 6px;
    }
    
    .about-features {
        gap: 0.5rem;
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
    }
    
    .trust-indicators {
        justify-content: space-around;
        flex-direction: row;
        gap: 1rem;
    }
    
    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
        font-size: 0.8rem;
    }
    
    /* Portfolio Gallery Mobile - Small Screens */
    .portfolio-item {
        min-width: 250px;
        width: 250px;
        height: 200px;
    }
    
    .portfolio-gallery {
        gap: 0.75rem;
    }
    
    .portfolio-content {
        padding: 1rem;
    }
    
    .portfolio-content h3 {
        font-size: 1.1rem;
    }
    
    .portfolio-content p {
        font-size: 0.8rem;
    }
    
    .portfolio-category {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .spec {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    .gallery-nav {
        width: 35px;
        height: 35px;
    }
    
    .gallery-nav svg {
        width: 18px;
        height: 18px;
    }
    
    .gallery-nav-prev {
        left: 5px;
    }
    
    .gallery-nav-next {
        right: 5px;
    }
    
    .contact-item {
        gap: 0.75rem;
    }
    
    .contact-text h3 {
        font-size: 1rem;
    }
    
    .contact-text p {
        font-size: 0.9rem;
    }
    
    .logo img {
        height: 60px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    /* Testimonials Mobile - Small Screens */
    .testimonial-card {
        min-width: 250px;
        width: 250px;
        height: 300px;
        padding: 1.25rem;
    }
    
    .testimonials-grid {
        gap: 0.75rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
        -webkit-line-clamp: 4;
    }
    
    .author-info h4 {
        font-size: 0.9rem;
    }
    
    .author-info p {
        font-size: 0.8rem;
    }
    
    .stars {
        margin-bottom: 0.75rem;
    }
    
    .star {
        width: 16px;
        height: 16px;
    }
}

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

/* Selection color */
::selection {
    background: var(--electric-accent);
    color: var(--white);
}

/* Icon Styles - Optimized */
.feature-icon,
.service-icon,
.credential-icon,
.badge-icon,
.contact-icon,
.button-icon,
.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg,
.button-icon svg,
.trust-icon svg {
    width: 20px;
    height: 20px;
    color: currentColor;
}

.service-icon svg {
    width: 34px;
    height: 34px;
    color: var(--white);
}

.credential-icon svg,
.badge-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.floating-element svg {
    width: 32px;
    height: 32px;
    color: currentColor;
}

/* Credential Icons */
.credential-icon {
    font-size: 2rem;
    padding: 10px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.floating-element svg {
    width: 32px;
    height: 32px;
}

.bolt1 {
    top: 20%;
    left: 10%;
    color: var(--electric-accent);
    animation-delay: 0s;
}

.bolt2 {
    top: 60%;
    right: 15%;
    color: var(--secondary-blue);
    animation-delay: 4s;
}

.gear1 {
    top: 40%;
    right: 10%;
    color: var(--primary-blue);
    animation: simpleRotate 12s linear infinite;
}

.gear2 {
    bottom: 20%;
    right: 25%;
    color: var(--electric-accent);
    animation: rotateFloat 10s linear infinite reverse;
}

/* Portfolio Section - Horizontal Scroll Gallery */
.portfolio {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: var(--white);
}

.portfolio .section-title {
    color: var(--white);
}

.portfolio .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.portfolio-scroll-container {
    position: relative;
    margin-top: 4rem;
    overflow: hidden;
    border-radius: 20px;
}

/* Scroll indicator */
.scroll-hint {
    text-align: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.scroll-hint svg {
    width: 20px;
    height: 20px;
    animation: scrollHint 2s ease-in-out infinite;
}

@keyframes scrollHint {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.portfolio-gallery {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(59, 130, 246, 0.5) rgba(255, 255, 255, 0.1);
}

.portfolio-gallery::-webkit-scrollbar {
    height: 8px;
}

.portfolio-gallery::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.portfolio-gallery::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.5);
    border-radius: 4px;
}

.portfolio-gallery::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.7);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    min-width: 350px;
    width: 350px;
    height: 280px;
    flex-shrink: 0;
    border: 2px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

/* Rotate first 3 images that are sideways */
.portfolio-item:nth-child(1) img,
.portfolio-item:nth-child(2) img,
.portfolio-item:nth-child(3) img {
    transform: rotate(90deg);
    width: 140%;
    height: 140%;
    margin-left: -20%;
    margin-top: -20%;
}

/* Adjust hover effect for rotated images */
.portfolio-item:nth-child(1):hover img,
.portfolio-item:nth-child(2):hover img,
.portfolio-item:nth-child(3):hover img {
    transform: rotate(90deg) scale(1.05);
}

.portfolio-overlay {
    display: none;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.4);
    border-color: var(--electric-accent);
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

/* Gallery Navigation Arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 15, 15, 0.8);
    border: 2px solid rgba(59, 130, 246, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.gallery-nav:hover {
    background: var(--gradient-primary);
    border-color: var(--electric-accent);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.gallery-nav-prev {
    left: 20px;
}

.gallery-nav-next {
    right: 20px;
}

/* Mobile scroll indicator */
.mobile-scroll-indicator {
    display: none;
    text-align: center;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.portfolio-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.portfolio-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--electric-accent);
}

.portfolio-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.4fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Footer About Section */
.footer-about {
    max-width: 380px;
    padding-right: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 45px;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.4));
}

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    padding: 1rem 0;
}

.credential-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.95rem;
    background: rgba(59, 130, 246, 0.05);
    padding: 0.75rem;
    border-radius: 8px;
    border-left: 3px solid var(--secondary-blue);
}

.credential-label {
    color: var(--secondary-blue);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.credential-value {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

/* Footer Titles */
.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

/* Footer Contact */
.footer-contact {
    min-height: 280px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item:hover {
    color: var(--secondary-blue);
}

.footer-contact-item:hover a {
    color: var(--secondary-blue);
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--secondary-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Footer Services */
.footer-services {
    min-height: 280px;
}

.footer-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services-list li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.875rem;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1rem;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.footer-services-list li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-services-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-blue);
    font-weight: bold;
}

.footer-services-list li:hover,
.footer-services-list li:hover a {
    color: var(--secondary-blue);
    cursor: pointer;
}

/* Footer Hours */
.footer-hours {
    min-height: 280px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 0.9rem;
    line-height: 1.3;
    gap: 1rem;
}

.day {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    flex-shrink: 0;
    min-width: 80px;
}

.time {
    color: var(--secondary-blue);
    font-weight: 600;
    text-align: right;
}

.emergency-notice {
    margin-top: 1.5rem;
    padding: 0.875rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.4;
}

.emergency-notice strong {
    color: var(--secondary-blue);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-legal span:nth-child(2) {
    color: var(--secondary-blue);
}

/* Mobile Footer Styles */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-about {
        max-width: none;
        margin: 0 auto;
        padding-right: 0;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact-item {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-services-list li {
        text-align: center;
        padding-left: 0;
    }
    
    .footer-services-list li::before {
        display: none;
    }
    
    .hours-list {
        text-align: center;
    }
    
    .hours-item {
        justify-content: center;
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
        margin-bottom: 0.75rem;
        align-items: center;
    }
    
    .day {
        min-width: auto;
        text-align: center;
    }
    
    .time {
        text-align: center;
    }
    
    .emergency-notice {
        margin-top: 1rem;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .credential-item {
        text-align: center;
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-logo img {
        height: 40px;
    }
    
    .footer-logo-text {
        font-size: 1.2rem;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-description,
    .footer-contact-item,
    .footer-services-list li,
    .hours-item,
    .copyright,
    .footer-legal {
        font-size: 0.85rem;
    }
    
    .credential-item {
        font-size: 0.85rem;
        padding: 0.5rem;
    }
    
    .credential-label {
        font-size: 0.8rem;
    }
    
    .credential-value {
        font-size: 0.9rem;
    }
    
    .emergency-notice {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
}

/* Partners Section - Never Ending Carousel */
.partners {
    background: var(--black);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    color: var(--white);
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(30, 64, 175, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.partners .section-title {
    color: var(--white);
}

.partners .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.partners-container {
    position: relative;
    z-index: 2;
    margin-top: 4rem;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    mask: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

.carousel-track {
    display: flex;
    width: calc(280px * 16); /* 8 logos × 2 (for seamless loop) × 280px width */
    animation: scroll-infinite 40s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
    transform: translateZ(0);
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-infinite {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(calc(-280px * 8), 0, 0); /* Move by width of 8 logos */
    }
}

.partner-item {
    flex: 0 0 240px;
    height: 140px;
    background: var(--white);
    margin: 0 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.partner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.partner-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.4);
    border-color: var(--secondary-blue);
    z-index: 10;
    background: var(--white);
}

.partner-item:hover::before {
    transform: scaleX(1);
}

.partner-item img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    filter: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: logoFadeIn 0.5s ease forwards;
}

.partner-item:hover img {
    filter: none;
    transform: scale(1.05);
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Responsiveness for Partners */
@media (max-width: 768px) {
    .partners {
        padding: 80px 0;
    }
    
    .carousel-track {
        width: calc(200px * 16); /* Smaller width for mobile */
        animation-duration: 35s;
    }

    @keyframes scroll-infinite {
        0% {
            transform: translate3d(0, 0, 0);
        }
        100% {
            transform: translate3d(calc(-200px * 8), 0, 0);
        }
    }

    .partner-item {
        flex: 0 0 180px;
        height: 120px;
        margin: 0 10px;
    }

    .partner-item img {
        max-width: 85%;
        max-height: 75%;
    }
}

@media (max-width: 480px) {
    .carousel-track {
        width: calc(170px * 16);
        animation-duration: 30s;
    }

    @keyframes scroll-infinite {
        0% {
            transform: translate3d(0, 0, 0);
        }
        100% {
            transform: translate3d(calc(-170px * 8), 0, 0);
        }
    }

    .partner-item {
        flex: 0 0 150px;
        height: 100px;
        margin: 0 10px;
        border-radius: 12px;
    }
    
    .partner-item img {
        max-width: 80%;
        max-height: 70%;
    }
}

/* Mobile Responsiveness for Portfolio */
@media (max-width: 768px) {
    .portfolio-scroll-container {
        margin-top: 2rem;
        overflow: visible;
    }
    
    .scroll-hint {
        font-size: 0.85rem;
    }
    
    .portfolio-gallery {
        gap: 1rem;
        padding: 0.5rem 1rem;
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
    
    .portfolio-gallery::-webkit-scrollbar {
        display: none;
    }
    
    .portfolio-item {
        display: inline-block;
        white-space: initial;
        min-width: 280px;
        width: 280px;
        height: 220px;
        margin-right: 1rem;
        vertical-align: top;
    }
    
    .gallery-nav {
        display: none;
    }
    
    .mobile-scroll-indicator {
        display: block;
        margin-top: 1rem;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.85rem;
        text-align: center;
    }
}

/* Mobile Responsiveness for Testimonials */
@media (max-width: 768px) {
    .testimonials-scroll-container {
        margin-top: 2rem;
        overflow: visible;
    }
    
    .testimonials-scroll-hint {
        font-size: 0.85rem;
    }
    
    .testimonials-grid {
        gap: 1rem;
        padding: 0.5rem 1rem;
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
    
    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }
    
    .testimonial-card {
        display: inline-block;
        white-space: initial;
        min-width: 280px;
        width: 280px;
        height: 300px;
        padding: 1.5rem;
        margin-right: 1rem;
        vertical-align: top;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        -webkit-line-clamp: 4;
        line-height: 1.4;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .testimonials-nav {
        display: none;
    }
    
    .testimonials-mobile-scroll-indicator {
        display: block;
        text-align: center;
        margin-top: 1rem;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.85rem;
    }
}
