:root {
    --dark-blue: #0a0e1a;
    --blue: #204db4;
    --light-blue: #3a6bc5;
    --cyan: #06b6d4;
    --white: #ffffff;
    --light-gray: #f1f5f9;
    --gray: #64748b;
    --metal-gray: #94a3b8;
    --metal-light: #e2e8f0;
    --metal-dark: #334155;
    --accent: #f59e0b;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Service Hero Styles */
.service-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
    background: linear-gradient(145deg, var(--white), var(--light-gray));
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(32, 77, 180, 0.1);
}

.service-hero-content h3 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.service-hero-content h3:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--light-blue));
    bottom: 0;
    left: 0;
}

.service-hero-description {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.service-hero-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    height: 100%;
}

.service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.tech-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 0.9rem;
}

.tech-badge i {
    color: var(--blue);
}

/* Responsive Design for Service Section */
@media (max-width: 992px) {
    .service-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .service-hero-image {
        height: 400px;
    }
    
    .service-cta {
        flex-direction: column;
    }
    
    .service-cta .btn,
    .service-cta .btn-transparent {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 30px;
    }
    
    .service-hero-content h3 {
        font-size: 2rem;
    }
    
    .service-highlight {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .highlight-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .service-hero {
        padding: 20px;
    }
    
    .service-hero-content h3 {
        font-size: 1.8rem;
    }
    
    .service-hero-description {
        font-size: 1rem;
    }
}

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

body {
    background-color: var(--white);
    color: #333;
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        linear-gradient(45deg, rgba(10, 14, 26, 0.03) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(10, 14, 26, 0.03) 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, rgba(10, 14, 26, 0.03) 75%), 
        linear-gradient(-45deg, transparent 75%, rgba(10, 14, 26, 0.03) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    color: var(--dark-blue);
    letter-spacing: -0.5px;
}

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

.section-padding {
    padding: 100px 0;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--blue), var(--light-blue));
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-family: 'Exo 2', sans-serif;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
    z-index: -1;
}

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(32, 77, 180, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    box-shadow: none;
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.btn-3d {
    background: linear-gradient(135deg, var(--blue), var(--light-blue));
    color: var(--white);
    border: none;
    box-shadow: none;
    position: relative;
    top: 0;
}

.btn-3d:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(32, 77, 180, 0.4);
}

.btn-3d:active {
    transform: translateY(-1px);
}

/* Transparent button style - nova klasa */
.btn-transparent {
    display: inline-block;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-family: 'Exo 2', sans-serif;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-transparent:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}      

/* Metal Texture Effect */
.metal-texture {
    position: relative;
    overflow: hidden;
}

.metal-texture:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

/* CNC Grid Pattern */
.cnc-grid {
    position: relative;
}

.cnc-grid:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(32, 77, 180, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(32, 77, 180, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: -1;
}

/* Precision Lines */
.precision-lines {
    position: relative;
}

.precision-lines:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    z-index: 1;
}

.precision-lines:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    z-index: 1;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.95), rgba(32, 77, 180, 0.95));
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(32, 77, 180, 0.3);
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

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

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-family: 'Exo 2', sans-serif;
    transition: var(--transition);
    position: relative;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 0;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--white);
    transition: var(--transition);
}

.nav-links a:hover:after {
    width: 100%;
}

.language-selector {
    display: flex;
    align-items: center;
    margin-left: 20px;
    position: relative;
}

.language-selector i {
    color: var(--white);
    margin-right: 8px;
    font-size: 16px;
}

.language-selector select {
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font-family: 'Exo 2', sans-serif;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23ffffff" d="M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 28px;
    appearance: none;
    font-size: 14px;
}

.language-selector select option {
    background: var(--white);
    color: var(--dark-blue);
}

.language-selector .dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: 4px;
    box-shadow: var(--shadow-hover);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1001;
}

.language-selector .dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.language-selector .dropdown a {
    display: block;
    padding: 10px 15px;
    color: var(--dark-blue);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.language-selector .dropdown a:hover {
    background: var(--light-gray);
    color: var(--blue);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--white);
}

/* Hero Section */
.hero {
    background: url('https://www.want.net/wp-content/uploads/2024/07/image_20240701001.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 2;
    pointer-events: none;
}

.hero .gradient-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--blue), var(--light-blue), var(--blue));
    z-index: 3;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 4;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
    color: var(--white);
    letter-spacing: -1px;
}

.hero h1:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--light-blue));
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 35px;
    animation: fadeInUp 1.2s ease;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1.4s ease;
}

.precision-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 4;
}

.precision-indicator i {
    color: var(--white);
    margin-right: 10px;
    font-size: 1.2rem;
}

.precision-indicator span {
    color: var(--white);
    font-weight: 600;
    font-family: 'Exo 2', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Technology Section */
.technology {
    padding: 100px 0;
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.technology::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--blue), var(--light-blue), var(--blue));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.tech-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tech-card {
    background: linear-gradient(145deg, var(--white), var(--light-gray));
    border-radius: 10px;
    padding: 30px;
    box-shadow: 
        5px 5px 15px rgba(0, 0, 0, 0.05), 
        -5px -5px 15px rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(32, 77, 180, 0.1);
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--light-blue));
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        10px 10px 25px rgba(0, 0, 0, 0.1), 
        -10px -10px 25px rgba(255, 255, 255, 0.7);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 36px;
    box-shadow: 0 10px 20px rgba(32, 77, 180, 0.3);
}

.tech-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--dark-blue);
    text-align: center;
}

.tech-card p {
    color: var(--gray);
    margin-bottom: 20px;
    text-align: center;
}

.tech-specs {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.tech-spec {
    text-align: center;
}

.tech-spec-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--blue);
    display: block;
}

.tech-spec-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CNC Visualization */
.cnc-visual {
    height: 300px;
    background: linear-gradient(135deg, var(--dark-blue), var(--blue));
    border-radius: 15px;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(32, 77, 180, 0.3);
}

.cnc-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(32, 77, 180, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(32, 77, 180, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.cnc-head {
    position: absolute;
    top: 50%;
    left: 20%;
    width: 60px;
    height: 120px;
    background: linear-gradient(135deg, var(--metal-gray), var(--metal-light));
    border-radius: 10px 10px 0 0;
    transform: translateY(-50%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 3;
    animation: cncMove 8s ease-in-out infinite;
}

.cnc-head::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 20px solid var(--metal-gray);
}

.cnc-spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: var(--blue);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 10px var(--blue);
}

.cnc-material {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, var(--metal-dark), var(--metal-gray));
    border-radius: 10px 10px 0 0;
}

.cnc-path {
    position: absolute;
    top: 50%;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    transform: translateY(-50%);
    z-index: 2;
}

@keyframes cncMove {
    0% { left: 20%; }
    50% { left: 70%; }
    100% { left: 20%; }
}

@keyframes sparkFly {
    0% { 
        transform: translate(0, 0);
        opacity: 1;
    }
    100% { 
        transform: translate(var(--x), var(--y));
        opacity: 0;
    }
}

/* Process Section */
.process {
    padding: 100px 0;
    background-color: var(--white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--light-blue), var(--blue));
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 22%;
    opacity: 0;
    transform: translateX(-50px);
}

.step.animate {
    animation: slideInLeft 0.6s ease forwards;
}

.step:nth-child(1).animate {
    animation-delay: 0.2s;
}

.step:nth-child(2).animate {
    animation-delay: 0.4s;
}

.step:nth-child(3).animate {
    animation-delay: 0.6s;
}

.step:nth-child(4).animate {
    animation-delay: 0.8s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 28px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(32, 77, 180, 0.3);
}

.step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(32, 77, 180, 0.4);
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background-color: var(--light-gray);
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(32, 77, 180, 0.03) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(32, 77, 180, 0.03) 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, rgba(32, 77, 180, 0.03) 75%), 
        linear-gradient(-45deg, transparent 75%, rgba(32, 77, 180, 0.03) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    z-index: -1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(32, 77, 180, 0.1);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--blue), var(--light-blue));
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(32, 77, 180, 0.1), rgba(58, 107, 197, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--blue);
    font-size: 32px;
    transition: var(--transition);
}

.feature:hover .feature-icon {
    background: linear-gradient(135deg, var(--blue), var(--light-blue));
    color: var(--white);
    transform: scale(1.1);
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-blue);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature p {
    color: var(--gray);
    text-align: center;
}

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

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(32, 77, 180, 0.02) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(32, 77, 180, 0.02) 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, rgba(32, 77, 180, 0.02) 75%), 
        linear-gradient(-45deg, transparent 75%, rgba(32, 77, 180, 0.02) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    z-index: -1;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--light-blue));
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 25px auto 0;
    font-size: 1.1rem;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background-color: var(--light-gray);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(32, 77, 180, 0.03) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(32, 77, 180, 0.03) 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, rgba(32, 77, 180, 0.03) 75%), 
        linear-gradient(-45deg, transparent 75%, rgba(32, 77, 180, 0.03) 75%);
    background-size: 30px 30px;
    background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
    z-index: -1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 320px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    background-color: var(--white);
    border: 1px solid rgba(32, 77, 180, 0.1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 14, 26, 0.95), rgba(32, 77, 180, 0.7) 50%, transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 30px 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 1rem;
    max-width: 90%;
    transform: translateY(20px);
    transition: var(--transition) 0.1s;
}

.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

.gallery-overlay .gallery-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    transform: translateY(20px);
    transition: var(--transition) 0.2s;
}

.gallery-item:hover .gallery-overlay .gallery-details {
    transform: translateY(0);
}

.gallery-detail {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.gallery-detail i {
    margin-right: 5px;
    color: var(--blue);
}

.gallery-detail span {
    font-weight: 600;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(32, 77, 180, 0.1);
    align-self: flex-start;
    max-height: 540px;
    height: 100%;
    width: 100%;
}

.about-image img {
    width: 100%;
    height: 100%;
    max-height: 540px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--dark-blue);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    margin-top: 30px;
    gap: 20px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: linear-gradient(145deg, var(--white), var(--light-gray));
    border-radius: 10px;
    flex: 1;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(32, 77, 180, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--gray);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(32, 77, 180, 0.1);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark-blue);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(32, 77, 180, 0.05);
}

.faq-question i {
    transition: var(--transition);
    color: var(--blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    background: linear-gradient(145deg, var(--white), var(--light-gray));
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(32, 77, 180, 0.1);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(32, 77, 180, 0.3);
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-details p {
    color: var(--gray);
    font-size: 1.05rem;
}

.contact-map {
    grid-column: span 2;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    margin-top: 30px;
    border: 1px solid rgba(32, 77, 180, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form {
    background: linear-gradient(145deg, var(--white), var(--light-gray));
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(32, 77, 180, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-blue);
    font-weight: 600;
    font-family: 'Exo 2', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
    font-family: 'Roboto Condensed', sans-serif;
    background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(32, 77, 180, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-message {
    padding: 15px;
    margin-top: 20px;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: block;
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.3);
    display: block;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-blue), var(--blue));
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--blue), var(--light-blue), var(--blue));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--light-blue));
    bottom: 0;
    left: 0;
}

.footer-column p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-links i {
    margin-right: 8px;
    font-size: 14px;
    color: var(--blue);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background-color: var(--blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(32, 77, 180, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-credit {
    margin-top: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-credit a {
    color: var(--blue);
    text-decoration: none;
    transition: var(--transition);
}

.footer-credit a:hover {
    color: var(--light-blue);
}

/* Service Modal Styles */
.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background-color: var(--white);
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.service-modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 30px;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
}

.modal-header h2 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.modal-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close-icon {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 24px;
    font-weight: 300;
    transition: var(--transition);
    border: 2px solid transparent;
}

.modal-close:hover .modal-close-icon {
    color: var(--blue);
    transform: scale(1.1);
    border-color: var(--blue);
}

.modal-body {
    padding: 30px;
}

.modal-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

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

.modal-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.modal-detail {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.modal-detail i {
    font-size: 24px;
    color: var(--blue);
    margin-bottom: 10px;
}

.modal-detail h4 {
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.modal-detail p {
    color: var(--gray);
    font-size: 0.9rem;
}

.modal-description {
    margin-bottom: 30px;
}

.modal-description h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.modal-description p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.modal-specs {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.modal-specs h3 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.spec-table tr:last-child {
    border-bottom: none;
}

.spec-table td {
    padding: 10px 15px;
    font-size: 0.95rem;
}

.spec-table td:first-child {
    font-weight: 600;
    color: var(--dark-blue);
    width: 40%;
}

.spec-table td:last-child {
    color: var(--gray);
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--light-gray);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn, .btn-transparent {
        width: 100%;
    }    
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .step {
        width: 80%;
        margin-bottom: 30px;
    }
    
    .step:nth-child(1).animate,
    .step:nth-child(2).animate,
    .step:nth-child(3).animate,
    .step:nth-child(4).animate {
        animation-delay: 0.2s;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    .tech-showcase {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
    }
}