/* ============================================
   PRELOADER STYLES
   ============================================ */

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

@keyframes spinnerScale {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.5); opacity: 0.5; }
}

@keyframes loadingProgress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeOut 0.5s ease-in-out 2.5s forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.preloader-content {
    text-align: center;
    color: white;
}

.preloader-spinner {
    width: 120px;
    height: 120px;
    position: relative;
    margin: 0 auto 40px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: #00a8e8;
    border-right-color: #00d4ff;
    border-radius: 50%;
    animation: spinnerRotate 1.5s linear infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: 0s;
}

.spinner-ring:nth-child(2) {
    width: 85%;
    height: 85%;
    top: 7.5%;
    left: 7.5%;
    border-top-color: #00d4ff;
    border-right-color: #00a8e8;
    animation-delay: -0.5s;
}

.spinner-ring:nth-child(3) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-top-color: #00d97e;
    border-right-color: #00d4ff;
    animation-delay: -1s;
}

.spinner-ring:nth-child(4) {
    width: 55%;
    height: 55%;
    top: 22.5%;
    left: 22.5%;
    border-top-color: #00a8e8;
    border-right-color: #00d97e;
    animation-delay: -1.5s;
}

.preloader-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #00a8e8, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
}

.preloader-text p {
    font-size: 1rem;
    color: #00d4ff;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #00a8e8, #00d4ff, #00d97e);
    border-radius: 2px;
    animation: loadingProgress 2.5s ease-in-out forwards;
}

/* ============================================
   CUSTOM CURSOR STYLES
   ============================================ */

body {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><defs><style>.wrench{fill:%2300a8e8;}</style></defs><g class="wrench"><path d="M28.5,8.5c0-1.4-1.1-2.5-2.5-2.5c-0.8,0-1.5,0.4-2,1c-1-1.6-2.8-2.5-4.8-2.5c-3.3,0-6,2.7-6,6c0,1.2,0.4,2.4,1,3.4L4.5,25c-0.4,0.4-0.4,1,0,1.4l1.4,1.4c0.4,0.4,1,0.4,1.4,0l10.7-10.7c1,0.6,2.2,1,3.4,1c3.3,0,6-2.7,6-6c0.6,0.6,1.2,1,2,1c1.4,0,2.5-1.1,2.5-2.5C28.5,9.7,28.5,9.1,28.5,8.5z"/></g></svg>') 12 12, auto;
}

a, button, .nav-link, .service-cta, .cta-btn, .submit-btn, .hamburger {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><defs><style>.wrench{fill:%2300d4ff;}</style></defs><g class="wrench"><path d="M28.5,8.5c0-1.4-1.1-2.5-2.5-2.5c-0.8,0-1.5,0.4-2,1c-1-1.6-2.8-2.5-4.8-2.5c-3.3,0-6,2.7-6,6c0,1.2,0.4,2.4,1,3.4L4.5,25c-0.4,0.4-0.4,1,0,1.4l1.4,1.4c0.4,0.4,1,0.4,1.4,0l10.7-10.7c1,0.6,2.2,1,3.4,1c3.3,0,6-2.7,6-6c0.6,0.6,1.2,1,2,1c1.4,0,2.5-1.1,2.5-2.5C28.5,9.7,28.5,9.1,28.5,8.5z"/></g></svg>') 12 12, pointer;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

:root {
    --primary-color: #00a8e8;
    --secondary-color: #00d4ff;
    --dark-bg: #0a0e27;
    --light-bg: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --accent-green: #00d97e;
    --border-color: #2px solid #e0e0e0;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

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

/* ============================================
   NAVIGATION HEADER
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(10, 14, 39, 0.95) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.logo {
    width: 130px;
    height: 130px;
    border-radius: 0;
    object-fit: contain;
    animation: logoFloat 3s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(0, 168, 232, 0.3);
    border: none;
    transition: var(--transition);
    cursor: pointer;
    background: transparent;
}

.logo-img {
    width: 90px;
    height: auto;
    max-height: 90px;
    object-fit: contain;
    animation: logoFloat 3s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(0, 168, 232, 0.3);
    border: none;
    transition: var(--transition);
    cursor: pointer;
    background: transparent;
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

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

.company-name {
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 168, 232, 0.3);
    transition: var(--transition);
    cursor: pointer;
}

.company-name:hover {
    letter-spacing: 4px;
    text-shadow: 0 4px 15px rgba(0, 212, 255, 0.5);
}

.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    border-radius: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--secondary-color);
    background: rgba(0, 168, 232, 0.1);
    transform: translateY(-2px);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO BANNER WITH VIDEO
   ============================================ */

.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 110px;
}

/* ============================================
   SERVICES OVERVIEW
   ============================================ */

.services-overview {
    background: white;
    padding: 60px 0;
}

.overview-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.overview-text p {
    margin-bottom: 20px;
}

.overview-text strong {
    color: var(--primary-color);
    font-size: 1.2rem;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.7) 0%, rgba(0, 168, 232, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-light);
    animation: fadeInUp 1s ease;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInDown 0.8s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
    animation: slideInUp 0.8s ease 0.2s both;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(0, 168, 232, 0.4);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 168, 232, 0.6);
}

.cta-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--secondary-color);
}

.cta-secondary:hover {
    background: var(--secondary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.floating-ctas {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.floating-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.floating-cta:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.floating-cta i {
    font-size: 2rem;
    color: var(--secondary-color);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

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

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

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.highlight {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.highlight:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 168, 232, 0.2);
}

.highlight i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.highlight h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.about-img {
    width: 100%;
    height: auto;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    transition: var(--transition);
}

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

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1f3a 100%);
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 212, 255, 0.1);
    animation: fadeInUp 0.8s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 168, 232, 0.4);
    border-color: var(--secondary-color);
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.1), rgba(0, 212, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    border: none;
}

.service-card:hover .service-image {
    transform: scale(1.08);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 168, 232, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.8), rgba(26, 31, 58, 0.8));
}

.service-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.8), rgba(26, 31, 58, 0.8));
}

.service-content h3,
.service-info h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-content p,
.service-info p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    text-align: justify;
    flex-grow: 1;
    margin-bottom: 0;
    padding: 0;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-top: 15px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 168, 232, 0.3);
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 168, 232, 0.5);
    border-color: var(--secondary-color);
}

.service-cta i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-image-wrapper {
        height: auto;
        aspect-ratio: 16/9;
        min-height: 220px;
    }

    .service-content,
    .service-info {
        padding: 20px;
    }

    .service-content h3,
    .service-info h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .service-content p,
    .service-info p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .service-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin-top: 12px;
    }
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.reason-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 168, 232, 0.2);
    border-top-color: var(--primary-color);
}

.reason-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.reason-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.reason-card p {
    color: #666;
    line-height: 1.6;
}

/* ============================================
   WORK WITH US SECTION
   ============================================ */

.work-with-us-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1f3a 100%);
    color: var(--text-light);
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 60px;
}

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

.work-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 15px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.benefits-list li:hover {
    padding-left: 10px;
    color: var(--secondary-color);
}

.benefits-list i {
    color: var(--accent-green);
    font-size: 1.3rem;
}

.work-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
}

.job-form h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-bg);
    color: var(--text-light);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.form-group.checkbox input {
    width: auto;
    cursor: pointer;
}

.form-group.checkbox label {
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 168, 232, 0.4);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-item {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 168, 232, 0.2);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-item h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-item p {
    color: #666;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

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

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: white;
    background: var(--primary-color);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

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

.contact-form .form-group input {
    width: 100%;
    padding: 18px 15px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.contact-form .form-group input::placeholder {
    color: #999;
}

.contact-form .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 10px rgba(0, 168, 232, 0.2);
}

/* ============================================
   WORK SECTION BENEFITS
   ============================================ */

.work-header {
    text-align: center;
    margin-bottom: 50px;
}

.work-header h3 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 700;
}

.work-header p {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.work-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.work-benefit-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.work-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 168, 232, 0.3);
    border-color: var(--secondary-color);
    background: rgba(0, 212, 255, 0.1);
}

.work-benefit-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: block;
}

.work-benefit-card h4 {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
}

.work-form-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.work-form-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    max-width: 500px;
    width: 100%;
}

.work-form-box h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.work-form-box .form-group {
    margin-bottom: 20px;
}

.work-form-box input,
.work-form-box select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 0.95rem;
    transition: var(--transition);
}

.work-form-box input::placeholder,
.work-form-box select {
    color: rgba(255, 255, 255, 0.6);
}

.work-form-box input:focus,
.work-form-box select:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 168, 232, 0.2);
}

.work-form-box .form-group.checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.work-form-box .form-group.checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.work-form-box input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.work-form-box input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.work-form-box input[type="file"]::file-selector-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    margin-right: 10px;
}

.work-form-box small {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

.work-form-box .submit-btn {
    width: 100%;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.work-form-box .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 168, 232, 0.4);
}

.form-message {
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    animation: slideIn 0.3s ease;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid #4caf50;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid #f44336;
}

.form-message.loading {
    background: rgba(0, 168, 232, 0.2);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.work-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1f3a 100%);
    padding: 100px 0;
    color: var(--text-light);
}

.work-section .section-title {
    color: var(--text-light);
    margin-bottom: 50px;
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */

.why-choose-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.why-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 168, 232, 0.2);
    border-top-color: var(--secondary-color);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.why-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.why-card p {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.7;
}

/* ============================================
   CLIENTES SECTION
   ============================================ */

.clientes-section {
    background: white;
    padding: 80px 0;
}

.carousel-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    animation: scroll 20s linear infinite;
    gap: 30px;
}

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

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

.carousel-item {
    flex: 0 0 220px;
    height: 120px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.marcas-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1f3a 100%);
    color: var(--text-light);
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    color: var(--secondary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-5px);
}

.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-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--accent-green);
}

/* ============================================
   WHATSAPP WIDGET
   ============================================ */

.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    animation: slideInRight 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366, #20ba5a);
    border-radius: 50%;
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
    border: 3px solid white;
    cursor: pointer;
    pointer-events: auto;
    text-decoration: none;
}

.whatsapp-widget:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-widget i {
    font-size: 2.2rem;
    color: white;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.scroll-top-btn {
    position: fixed;
    bottom: 130px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(0, 168, 232, 0.4);
    transition: var(--transition);
    z-index: 998;
}

.scroll-top-btn.show {
    display: flex;
    animation: slideInRight 0.3s ease;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 168, 232, 0.6);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .hero-banner {
        padding-top: 100px;
    }

    .navbar-container {
        height: 100px;
    }

    .logo,
    .logo-img {
        width: 100px;
        height: auto;
        max-height: 100px;
    }

    .company-name {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--dark-bg);
        padding: 20px;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

    .hero-banner {
        margin-top: 140px;
        height: 80vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }

    .floating-ctas {
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content,
    .work-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .work-benefits-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
        width: 65px;
        height: 65px;
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
        z-index: 9999;
    }

    .whatsapp-widget i {
        font-size: 2.2rem;
    }

    .whatsapp-btn {
        width: 60px;
        height: 60px;
    }

    .whatsapp-btn img {
        width: 35px;
        height: 35px;
    }

    .scroll-to-top {
        bottom: 100px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        padding-top: 80px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .service-content {
        padding: 20px;
    }

    .service-content h3 {
        font-size: 1.2rem;
    }

    .work-form-container {
        padding: 20px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

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

.pulse {
    animation: pulse 2s infinite;
}

.bounce {
    animation: bounce 2s infinite;
}
