* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    position: relative;
    overflow-x: hidden;
    opacity: 1;
    transition: opacity 0.5s ease;
}

body.page-loaded {
    opacity: 1;
}

body.page-fade-out {
    opacity: 0;
}

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Grid Pattern */
.grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(51, 65, 117, 0.25) 1px, transparent 1px),
        linear-gradient(90deg, rgba(51, 65, 117, 0.25) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    background-color: #f8f9fa;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Circuit Lines */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.6), transparent);
    height: 2px;
    animation: circuitFlow 8s linear infinite;
    box-shadow: 0 0 8px rgba(102, 126, 234, 0.4);
}

.line-1 {
    top: 20%;
    left: -100%;
    width: 300px;
    animation-delay: 0s;
}

.line-2 {
    top: 40%;
    left: -100%;
    width: 250px;
    animation-delay: 2s;
}

.line-3 {
    top: 60%;
    left: -100%;
    width: 350px;
    animation-delay: 4s;
}

.line-4 {
    top: 80%;
    left: -100%;
    width: 280px;
    animation-delay: 6s;
}

@keyframes circuitFlow {
    0% {
        left: -100%;
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(102, 126, 234, 0.6);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
    box-shadow: 0 0 12px rgba(102, 126, 234, 0.5);
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 30%;
    top: 60%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 50%;
    top: 10%;
    animation-delay: 4s;
    animation-duration: 15s;
}

.particle:nth-child(4) {
    left: 70%;
    top: 80%;
    animation-delay: 6s;
    animation-duration: 20s;
}

.particle:nth-child(5) {
    left: 85%;
    top: 40%;
    animation-delay: 8s;
    animation-duration: 14s;
}

.particle:nth-child(6) {
    left: 20%;
    top: 90%;
    animation-delay: 10s;
    animation-duration: 16s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(30px, -50px) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translate(-20px, -100px) scale(0.8);
        opacity: 0.3;
    }
    75% {
        transform: translate(40px, -30px) scale(1.1);
        opacity: 0.5;
    }
}

/* Ensure content is above background */
header,
main,
footer {
    position: relative;
    z-index: 1;
}

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

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #333;
    padding: 0.3rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

header nav {
    /* Normal nav styling */
}

/* Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 25px;
    background: transparent;
    background-color: transparent;
    flex-shrink: 0;
}

.logo img {
    height: 130px;
    width: auto;
    background: transparent;
    background-color: transparent;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    white-space: nowrap;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    line-height: 1.3;
    flex-shrink: 1;
    min-width: 0;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-shrink: 1;
    min-width: 0;
    align-items: center;
    flex-wrap: nowrap;
}

nav li {
    white-space: nowrap;
}

nav a {
    color: #222;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 0.95rem;
    display: block;
    line-height: 1.4;
    padding: 0.5rem 0;
}

nav a:hover {
    color: #667eea;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    header nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        opacity: 0;
    }
    
    header nav.active {
        max-height: 500px;
        opacity: 1;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        width: 100%;
    }
    
    nav li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    nav li:last-child {
        border-bottom: none;
    }
    
    nav a {
        padding: 1rem 1.5rem;
        width: 100%;
        text-align: left;
        font-size: 1rem;
    }
    
    nav a:hover {
        background: rgba(102, 126, 234, 0.1);
    }
}

/* Hero Image Section */
.hero-image-section {
    width: 100%;
    padding: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-image-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.85);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-title {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    border-radius: 2px;
}

.about-text {
    margin-bottom: 3rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.mission-box,
.vision-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #1a237e;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5), 0 4px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 5px 10px rgba(0, 0, 0, 0.5);
}

.vision-box {
    border-left-color: #283593;
}

.mission-box h3,
.vision-box h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-box p,
.vision-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

/* Products Slider Section */
.products-slider-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.9);
}

.sliders-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

@media (max-width: 1200px) {
    .sliders-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.product-slider-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2), 0 5px 15px rgba(0,0,0,0.15) !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100%;
    align-items: stretch;
    min-height: 750px;
}

.product-slider-wrapper > * {
    flex-shrink: 0;
}
    
    @media (max-width: 768px) {
        .product-slider-wrapper {
            box-shadow: 0 4px 15px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.08) !important;
        }
    }

.slider-header {
    text-align: center;
    margin-bottom: 2rem !important;
    padding-bottom: 1rem !important;
    border-bottom: 2px solid #f0f0f0;
    flex-shrink: 0;
    height: 140px !important;
    min-height: 140px !important;
    max-height: 140px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    overflow: visible !important;
    padding-top: 0.5rem !important;
}

.slider-header h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem !important;
    line-height: 1.4;
    min-height: 3.5rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible !important;
    text-overflow: clip;
    padding: 0 0.5rem;
    word-wrap: break-word;
    text-align: center;
}

.slider-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0 !important;
    margin-top: 1.25rem !important;
    overflow: visible !important;
    padding: 0 0.5rem;
    text-align: center;
}

.slider-container {
    position: relative !important;
    width: 100%;
    max-width: 800px;
    margin: 0 auto !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
    overflow: visible;
    border-radius: 10px;
    background: #f8f9fa;
    padding: 20px !important;
    box-sizing: border-box;
    flex-shrink: 0;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.product-slider-wrapper .slider-container {
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
    padding: 20px !important;
    margin-top: 0 !important;
}

.product-slider-wrapper > .slider-header + .slider-container {
    margin-top: 0 !important;
}

@media (max-width: 1024px) {
    .slider-container {
        height: 500px;
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .slider-container {
        height: auto;
        min-height: 350px;
    }
}

.slider-track {
    position: absolute !important;
    top: 20px !important;
    left: 20px !important;
    right: 20px !important;
    bottom: 20px !important;
    width: calc(100% - 40px) !important;
    height: calc(100% - 40px) !important;
    min-height: 460px !important;
    max-height: 460px !important;
    overflow: hidden;
    border-radius: 10px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

@media (max-width: 768px) {
    .slider-track {
        overflow: visible;
        min-height: auto;
    }
}

.slider-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 460px !important;
    min-height: 460px !important;
    max-height: 460px !important;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1;
    margin: 0 !important;
    padding: 0 !important;
}

.slider-slide.active {
    opacity: 1;
    z-index: 2;
}

.slider-slide img {
    width: auto !important;
    max-width: 90% !important;
    height: 380px !important;
    max-height: 380px !important;
    min-height: 380px !important;
    object-fit: contain !important;
    object-position: center center !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5), 0 4px 8px rgba(0, 0, 0, 0.4);
    margin: auto !important;
    padding: 0 !important;
    display: block !important;
    vertical-align: middle !important;
    position: relative !important;
    top: 45% !important;
    transform: translateY(-45%) !important;
    align-self: center !important;
}

@media (max-width: 768px) {
    .slider-slide img {
        width: 100%;
        height: auto;
        max-height: 60vh;
        object-fit: contain;
        object-position: center;
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    color: #333;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.slider-btn:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 15px;
}

.slider-next {
    right: 15px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: #667eea;
    width: 30px;
    border-radius: 6px;
}

.product-slider-wrapper .view-all {
    margin-top: auto;
    padding-top: 2rem;
    text-align: center;
    flex-shrink: 0;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.uydu-section {
    border-top: 4px solid #667eea;
}

.kamera-section {
    border-top: 4px solid #f093fb;
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.category-header h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.category-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.product-card {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e0e0e0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 1rem;
}

.btn-primary {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.view-all {
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: transparent;
    color: #1a237e;
    border: 2px solid #1a237e;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #1a237e;
    color: white;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.9);
}

.services-title {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

    .service-card {
        background: white;
        border-radius: 15px;
        padding: 2rem;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2), 0 5px 15px rgba(0,0,0,0.15) !important;
        transition: transform 0.3s, box-shadow 0.3s;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    @media (max-width: 768px) {
        .service-card {
            box-shadow: 0 4px 15px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.08) !important;
        }
    }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.service-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-btn {
    padding: 0.75rem 2rem;
    border: 2px solid;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

/* Floating Call Widget */
.floating-call {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1500;
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

@media (max-width: 768px) {
    .floating-call {
        right: 15px;
        bottom: calc(90px + 10px);
    }
}

@media (max-width: 480px) {
    .floating-call {
        right: 10px;
        bottom: calc(85px + 10px);
    }
}

.call-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.call-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: linear gradient(135deg, #ff5f6d, #ffc371);
    background: linear-gradient(135deg, #ff5f6d, #ffc371);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 95, 109, 0.4);
    cursor: pointer;
    animation: pulseCall 2s infinite;
    transition: transform 0.3s ease;
}

.call-button:hover {
    transform: scale(1.08);
}

.call-button svg {
    width: 24px;
    height: 24px;
}

.whatsapp-button {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 10px 25px rgba(18, 140, 126, 0.4);
    animation: pulseWhats 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.08);
}

.whatsapp-button svg {
    width: 24px;
    height: 24px;
}

.call-popup {
    position: absolute;
    right: calc(70px + 60px);
    bottom: 0;
    background: #1a1a1a;
    color: white;
    padding: 16px 18px;
    border-radius: 12px;
    width: 220px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-call.open .call-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.call-popup-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 8px;
    color: #fff;
}

.call-popup-number {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: #ffc371;
    display: block;
}

.call-popup-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid #ffc371;
    color: #ffc371;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.call-popup-action:hover {
    background: rgba(255, 195, 113, 0.1);
}

@keyframes pulseCall {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 95, 109, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 95, 109, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 95, 109, 0);
    }
}

@keyframes pulseWhats {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    opacity: 0.9;
}

.service-btn:active {
    transform: translateY(0);
}

/* Logo Carousel Section */
.logo-carousel-section {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 0;
    margin-bottom: 3rem;
    overflow: hidden;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.logo-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-carousel-track {
    display: flex;
    animation: logoScroll 20s linear infinite;
    gap: 4rem;
}

.logo-item {
    flex-shrink: 0;
    padding: 1rem 2rem;
    background: white;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}

.logo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    max-width: 150px;
}

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

/* Products Page Styles */
.products-page-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.9);
    min-height: calc(100vh - 300px);
}

.page-title {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    border-radius: 2px;
}

.page-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.products-section-page {
    margin-bottom: 4rem;
}

.products-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .products-grid-page {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
    }
    
    .references-grid-page {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
    }
}

.product-item-page {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.product-item-page:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-image-page {
    width: 100%;
    height: 300px;
    overflow: visible;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.product-image-page img {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5), 0 4px 8px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .product-image-page img {
        width: 100%;
        height: auto;
        max-height: 60vh;
        object-fit: contain;
        object-position: center;
    }
}

.product-item-page:hover .product-image-page img {
    transform: scale(1.05);
}

.product-item-page h3 {
    padding: 1.5rem;
    font-size: 1.2rem;
    color: #333;
    text-align: center;
    margin: 0;
    font-weight: 600;
}

/* References Section */
.references-section-page {
    margin-top: 4rem;
}

.references-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.reference-item-page {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.reference-item-page:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.reference-image-page {
    width: 100%;
    height: 400px;
    overflow: visible;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.reference-image-page img {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5), 0 4px 8px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .reference-image-page img {
        width: 100%;
        height: auto;
        max-height: 65vh;
        object-fit: contain;
        object-position: center;
    }
}

.reference-item-page:hover .reference-image-page img {
    transform: scale(1.05);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    animation: fadeIn 0.3s;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

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

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #fff;
    text-decoration: none;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #f1f1f1;
    font-size: 1.2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
}

.product-image-page,
.reference-image-page {
    cursor: pointer;
    transition: transform 0.3s;
}

.product-image-page:hover,
.reference-image-page:hover {
    transform: scale(1.02);
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.9);
    min-height: calc(100vh - 300px);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3);
}

.contact-info-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin: 0;
}

.contact-info-item p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Contact Form */
.contact-form-section,
.contact-form-section-page {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form-section-page {
    margin-top: 3rem;
}

/* Dark Form Theme */
.dark-form {
    background: #000000 !important;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    max-width: 500px;
    margin: 0 auto;
}

.contact-form-section-page.dark-form {
    max-width: 500px;
    margin: 3rem auto 0;
}

.dark-form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    text-align: center;
}

.dark-form-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.dark-contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dark-form-label {
    color: #ffffff !important;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    opacity: 1;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.dark-contact-form input,
.dark-contact-form textarea {
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: #1a1a1a;
    color: white;
    width: 100%;
}

.dark-contact-form input::placeholder,
.dark-contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

.dark-contact-form input:focus,
.dark-contact-form textarea:focus {
    outline: none;
    background: #252525;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

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

.dark-contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.dark-submit-btn {
    padding: 0.75rem 2rem;
    background: #4a4a4a;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-end;
    margin-top: 0.5rem;
}

.dark-submit-btn:hover {
    background: #5a5a5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.dark-submit-btn:active {
    transform: translateY(0);
}

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

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

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: white;
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a237e;
}

.form-group textarea {
    resize: vertical;
}

.form-submit-btn {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.4);
}

.form-submit-btn:active {
    transform: translateY(0);
}

/* Floating Service Request Form */
.floating-service-form {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1501;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (max-width: 768px) {
    .floating-service-form {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        z-index: 1501;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .floating-service-form .floating-form-trigger {
        width: 100%;
        min-width: auto;
        padding: 1rem;
        border-radius: 8px;
        background: #000000;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        display: block !important;
    }
    
    .floating-service-form.simple-service .floating-form-trigger {
        width: 100%;
        text-align: center;
    }
    
    .floating-service-form .floating-form-trigger-text {
        font-size: 1rem;
        font-weight: 700;
    }
    
    .floating-service-form .floating-form-content {
        display: none !important;
    }
    
    /* Add bottom padding to body to prevent content from being hidden */
    body {
        padding-bottom: 90px;
    }
    
    main {
        padding-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .floating-service-form {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        z-index: 1501;
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .floating-service-form .floating-form-trigger {
        width: 100%;
        min-width: auto;
        padding: 0.875rem 1rem;
        border-radius: 8px;
        background: #000000;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        display: block !important;
    }
    
    .floating-service-form.simple-service .floating-form-trigger {
        width: 100%;
        text-align: center;
    }
    
    .floating-form-trigger-text {
        font-size: 0.95rem;
        font-weight: 700;
    }
    
    .floating-service-form .floating-form-content {
        display: none !important;
    }
    
    /* Add bottom padding to body to prevent content from being hidden */
    body {
        padding-bottom: 85px;
    }
    
    main {
        padding-bottom: 1rem;
    }
}


/* Floating Form Trigger (Collapsed State) */
.floating-form-trigger {
    background: #000000;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.7);
    cursor: pointer;
    transition: all 0.5s ease-out;
    display: block;
    width: auto;
    min-width: 200px;
    opacity: 1;
    transform: translateX(0);
}

.floating-service-form.show .floating-form-trigger {
    opacity: 1;
    transform: translateX(0);
}

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

.floating-form-trigger:hover {
    transform: translateY(-2px) translateX(0);
    box-shadow: 0 12px 45px rgba(0,0,0,0.8);
}

.floating-form-trigger-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    white-space: nowrap;
}

.floating-service-form.simple-service .floating-form-trigger {
    min-width: auto;
    padding: 0.75rem 1.25rem;
}

.floating-service-form.simple-service .floating-form-content {
    display: none !important;
}

/* Floating Form Content (Expanded State) */
.floating-form-content {
    display: none;
    background: #000000;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.7);
    width: 320px;
    max-width: calc(100vw - 40px);
    max-height: 85vh;
    overflow-y: auto;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-service-form.expanded .floating-form-trigger {
    display: none;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
}

.floating-service-form.expanded .floating-form-content {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: expandForm 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-service-form:not(.expanded) .floating-form-content {
    display: none;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.6s ease-out;
}

@keyframes expandForm {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.floating-form-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10;
}

.floating-form-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.floating-service-form .dark-form-title {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
    padding-right: 35px;
    line-height: 1.2;
}

.floating-service-form .dark-form-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.floating-service-form .dark-contact-form {
    gap: 0.8rem;
}

.floating-service-form .dark-form-label {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.floating-service-form input,
.floating-service-form textarea {
    padding: 0.6rem;
    font-size: 0.9rem;
}

.floating-service-form textarea {
    min-height: 70px;
    rows: 4;
}

.floating-service-form .dark-submit-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    align-self: flex-end;
    margin-top: 0.3rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(26, 35, 126, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s;
    opacity: 0;
}

.scroll-to-top.show {
    display: flex;
    opacity: 1;
    animation: slideInLeft 0.3s ease-out;
}

.scroll-to-top:hover {
    background: rgba(26, 35, 126, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

@keyframes slideInLeft {
    from {
        transform: translateY(-50%) translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-image-section {
        padding: 2rem 0;
    }
    
    .sliders-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .slider-container {
        height: 400px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Disable animated background on mobile */
    .animated-background {
        display: none;
    }
    
    header .container {
        padding: 0.5rem 20px;
    }
    
    .logo {
        gap: 15px;
    }
    
    .logo img {
        height: 70px;
    }
    
    .logo-text {
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0.2px;
        line-height: 1.2;
    }
    
    .hero-image-section {
        padding: 0;
        margin-bottom: 2rem;
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    
    .hero-image-container {
        padding: 0;
    }
    
    .hero-image {
        width: 100%;
        height: auto;
        min-height: 300px;
        max-height: 70vh;
        object-fit: contain;
        object-position: center;
        display: block;
    }
    
    .about-section {
        padding: 2rem 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .products-slider-section .container,
    .about-section .container,
    .services-section .container {
        padding: 0 15px;
    }
    
    .about-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .mission-box,
    .vision-box {
        padding: 1.5rem;
    }
    
    .mission-box h3,
    .vision-box h3 {
        font-size: 1.3rem;
    }
    
    .mission-box p,
    .vision-box p {
        font-size: 0.95rem;
    }
    
    .sliders-container {
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }
    
    .slider-container {
        height: auto;
        min-height: 400px;
        max-height: none;
        padding: 15px;
    }
    
    .slider-track {
        height: auto;
        min-height: 400px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slider-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 400px;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slider-slide.active {
        opacity: 1;
        z-index: 2;
    }
    
    .slider-slide img {
        width: 100%;
        height: auto;
        max-height: 60vh;
        object-fit: contain;
    }
    
    .view-all {
        margin-top: 1.5rem;
    }
    
    .btn-secondary {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .slider-header h2 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .slider-header p {
        font-size: 0.9rem;
    }
    
    .product-slider-wrapper {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .sliders-container {
        margin-bottom: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    footer {
        padding: 2rem 0 calc(1rem + 90px);
        margin-top: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .products-slider-section {
        padding: 2rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-section {
        padding: 2rem 0;
    }
    
    .services-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        min-height: auto;
        margin-bottom: 0.75rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .split-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-section,
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .call-button {
        width: 50px;
        height: 50px;
    }
    
    .call-popup {
        right: calc(70px);
        width: 200px;
        padding: 14px 16px;
    }
}

@media (max-width: 480px) {
    /* Disable animated background on mobile */
    .animated-background {
        display: none;
    }
    
    header .container {
        padding: 0.5rem 15px;
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo img {
        height: 60px;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
    
    .hero-image-section {
        padding: 0;
        margin-bottom: 1.5rem;
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    
    .hero-image-container {
        padding: 0;
    }
    
    .hero-image {
        width: 100%;
        height: auto;
        min-height: 280px;
        max-height: 65vh;
        object-fit: contain;
        object-position: center;
        display: block;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .products-slider-section .container,
    .about-section .container,
    .services-section .container,
    .products-page-section .container,
    .contact-section .container {
        padding: 0 10px;
    }
    
    .slider-container {
        height: auto;
        min-height: 350px;
        max-height: none;
        padding: 10px;
    }
    
    .slider-track {
        height: auto;
        min-height: 350px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slider-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 350px;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slider-slide.active {
        opacity: 1;
        z-index: 2;
    }
    
    .slider-slide img {
        width: 100%;
        height: auto;
        max-height: 55vh;
        object-fit: contain;
    }
    
    .view-all {
        margin-top: 1.25rem;
    }
    
    .btn-secondary {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .slider-header h2 {
        font-size: 1.2rem;
    }
    
    .slider-header p {
        font-size: 0.85rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .slider-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .slider-prev {
        left: 5px;
    }
    
    .slider-next {
        right: 5px;
    }
    
    .product-slider-wrapper {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .sliders-container {
        margin-bottom: 0.75rem;
    }
    
    .about-section {
        padding: 1.5rem 0;
    }
    
    .about-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
    }
    
    .mission-box,
    .vision-box {
        padding: 1rem;
    }
    
    .mission-box h3,
    .vision-box h3 {
        font-size: 1.1rem;
    }
    
    .mission-box p,
    .vision-box p {
        font-size: 0.9rem;
    }
    
    .services-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .service-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .service-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .products-grid-page {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .references-grid-page {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-image-page {
        height: auto;
        min-height: 220px;
        max-height: 50vh;
        padding: 8px;
    }
    
    .product-image-page img {
        width: 100%;
        height: auto;
        max-height: 50vh;
        object-fit: contain;
    }
    
    .reference-image-page {
        height: auto;
        min-height: 250px;
        max-height: 55vh;
        padding: 8px;
    }
    
    .reference-image-page img {
        width: 100%;
        height: auto;
        max-height: 55vh;
        object-fit: contain;
    }
    
    .page-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .page-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-section,
    .contact-form-section {
        padding: 1.25rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .contact-info-item h3 {
        font-size: 1.1rem;
    }
    
    .contact-info-item p {
        font-size: 1rem;
    }
    
    .dark-form {
        padding: 1.25rem !important;
        max-width: calc(100% - 20px) !important;
    }
    
    .dark-form-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .dark-form-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1.25rem;
    }
    
    .dark-form-label {
        font-size: 1rem !important;
        margin-bottom: 0.4rem;
    }
    
    .dark-contact-form input,
    .dark-contact-form textarea {
        padding: 0.65rem;
        font-size: 0.95rem;
    }
    
    .dark-submit-btn {
        align-self: stretch;
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .call-button {
        width: 48px;
        height: 48px;
    }
    
    .call-button svg {
        width: 20px;
        height: 20px;
    }
    
    .call-popup {
        right: calc(60px);
        bottom: 0;
        width: 180px;
        padding: 12px 14px;
    }
    
    .call-popup-title {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .call-popup-number {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .floating-form-trigger {
        padding: 0.7rem 1rem;
        min-width: auto;
    }
    
    .floating-form-trigger-text {
        font-size: 0.85rem;
    }
    
    .floating-form-content {
        width: calc(100vw - 20px);
        max-width: 320px;
        padding: 1rem;
        max-height: 80vh;
    }
    
    .floating-service-form .dark-form-title {
        font-size: 1rem;
        padding-right: 25px;
        margin-bottom: 0.3rem;
    }
    
    .floating-service-form .dark-form-subtitle {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .floating-service-form .dark-form-label {
        font-size: 0.85rem !important;
        margin-bottom: 0.3rem;
    }
    
    .floating-service-form input,
    .floating-service-form textarea {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .floating-service-form textarea {
        min-height: 60px;
    }
    
    .floating-service-form .dark-submit-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        width: 100%;
    }
    
    .logo-carousel-section {
        padding: 1rem 0;
        margin-bottom: 1.5rem;
    }
    
    .logo-item {
        padding: 0.6rem 1rem;
        min-width: 100px;
    }
    
    .logo-image {
        height: 40px;
        max-width: 100px;
    }
    
    .logo-carousel-track {
        gap: 1.5rem;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 28px;
    }
    
    .lightbox-caption {
        font-size: 0.9rem;
        padding: 6px 12px;
        bottom: 10px;
    }
    
    footer {
        padding: 1.5rem 0 calc(0.5rem + 85px);
        margin-top: 1.5rem;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 0.9rem;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .grid-pattern,
    .circuit-line,
    .particle {
        animation: none;
    }
}

