
/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #f8fafc;
    color: #0b1a33;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Navigation ===== */
.navbar {
    background: #0b1a33;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.logo-img {
    height: 45px;
    width: auto;
    max-width: 50px;
    object-fit: contain;
    display: block;
}

.logo-fallback {
    display: none;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(94, 224, 250, 0.2), rgba(94, 224, 250, 0.05));
    border-radius: 14px;
    color: #5ee0fa;
    font-size: 2rem;
    border: 1px solid rgba(94, 224, 250, 0.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

    .logo-text span {
        font-weight: 800;
        font-size: 1.6rem;
        color: #f0f9ff;
        letter-spacing: -0.02em;
        line-height: 1.2;
    }

    .logo-text .highlight {
        color: #5ee0fa;
    }

    .logo-text small {
        font-size: 0.7rem;
        color: #b6cde0;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-weight: 400;
    }

.nav-links {
    display: flex;
    gap: 30px;
    font-weight: 500;
}

    .nav-links a {
        color: #e2edf7;
        text-decoration: none;
        transition: color 0.3s, transform 0.2s;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.95rem;
    }

        .nav-links a:hover {
            color: #5ee0fa;
            transform: translateY(-2px);
        }

        .nav-links a i {
            font-size: 1.1rem;
        }

.hamburger {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
}

/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: #0d2847;
    margin: 0 0 20px 0;
}

.slider-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    min-height: 500px;
}

.slide {
    flex: 0 0 100%;
    min-height: 500px;
    padding: 60px 80px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

    .slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, rgba(11, 26, 51, 0.85) 0%, rgba(11, 26, 51, 0.4) 100%);
    }

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

    .slide-content h2 {
        font-size: 3rem;
        font-weight: 800;
        color: white;
        margin-bottom: 15px;
        line-height: 1.2;
    }

        .slide-content h2 i {
            color: #5ee0fa;
            margin-right: 15px;
        }

    .slide-content p {
        font-size: 1.2rem;
        color: rgba(255,255,255,0.9);
        margin-bottom: 25px;
        line-height: 1.6;
    }

.btn-outline-light {
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    padding: 14px 35px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
}

    .btn-outline-light:hover {
        background: white;
        color: #0b1a33;
        border-color: white;
        transform: scale(1.02);
    }

.slider-controls {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

    .slider-controls button {
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.2);
        width: 48px;
        height: 48px;
        border-radius: 50%;
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

        .slider-controls button:hover {
            background: #5ee0fa;
            color: #0b1a33;
            transform: scale(1.05);
        }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 40px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

    .dot:hover {
        background: rgba(255,255,255,0.7);
    }

    .dot.active {
        background: #5ee0fa;
        width: 35px;
        border-radius: 10px;
    }

.badge-pulse {
    display: inline-block;
    background: #00bcd4;
    color: #0b1a33;
    padding: 6px 18px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
}

/* ===== Stats Section ===== */
.stats-section {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid #eef3f8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
}

    .stat-item i {
        font-size: 2.5rem;
        color: #0f3b6a;
        background: #e6f0fa;
        padding: 15px;
        border-radius: 16px;
    }

    .stat-item h3 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0b1a33;
        margin-bottom: 2px;
    }

    .stat-item p {
        color: #5d738b;
        font-size: 0.9rem;
    }

/* ===== Services Overview ===== */
.services-overview {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #0b1a33;
        margin-bottom: 10px;
    }

        .section-header h2 i {
            color: #0f3b6a;
            margin-right: 15px;
        }

    .section-header p {
        color: #5d738b;
        font-size: 1.1rem;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.03);
    border: 1px solid #eef3f8;
    transition: all 0.3s;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.08);
        border-color: #cbddee;
    }

    .service-card i {
        font-size: 3rem;
        color: #0f3b6a;
        background: #e6f0fa;
        padding: 20px;
        border-radius: 50%;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
        color: #0b1a33;
    }

    .service-card p {
        color: #5d738b;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .service-card .price {
        font-size: 1.5rem;
        font-weight: 700;
        color: #0f3b6a;
        margin: 15px 0;
    }

.btn-primary {
    display: inline-block;
    background: #0b1a33;
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

    .btn-primary:hover {
        background: #1a3a5c;
        transform: scale(1.02);
    }

/* ===== Contact Info Bar ===== */
.contact-info-bar {
    background: #0b1a33;
    padding: 20px 0;
}

.contact-bar-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

    .contact-item i {
        font-size: 1.5rem;
        color: #5ee0fa;
        width: 45px;
        height: 45px;
        background: rgba(94, 224, 250, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-item span {
        display: block;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #b6cde0;
        margin-bottom: 2px;
    }

    .contact-item strong {
        font-size: 0.95rem;
        font-weight: 600;
    }

.address-item {
    grid-column: span 1;
}

/* ===== Footer ===== */
.footer {
    background: #0b1a33;
    color: #b6cde0;
    padding: 50px 0 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    flex-shrink: 0;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    max-width: 45px;
    object-fit: contain;
    display: block;
}

.footer-logo-fallback {
    display: none;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(94, 224, 250, 0.1);
    border-radius: 12px;
    color: #5ee0fa;
    font-size: 1.8rem;
}

.footer-logo h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-logo p {
    font-size: 0.85rem;
    color: #b6cde0;
}

.footer-contact p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .footer-contact p i {
        color: #5ee0fa;
        width: 20px;
    }

.footer-column h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

    .footer-column ul li {
        margin-bottom: 10px;
    }

        .footer-column ul li a {
            color: #b6cde0;
            text-decoration: none;
            transition: color 0.3s;
        }

            .footer-column ul li a:hover {
                color: #5ee0fa;
            }

.footer-column p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .footer-column p i {
        color: #5ee0fa;
        width: 20px;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

    .footer-bottom p {
        font-size: 0.9rem;
        opacity: 0.7;
    }

.footer-tech {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
}

    .footer-tech span i {
        color: #5ee0fa;
        margin-right: 5px;
    }

/* ===== Responsive ===== */
@media screen and (max-width: 820px) {
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 15px;
        background: #0f2847;
        border-radius: 16px;
        margin-top: 15px;
    }

        .nav-links.open {
            display: flex;
        }

    .hamburger {
        display: block;
    }

    .slide {
        padding: 40px 30px;
        min-height: 400px;
    }

    .slide-content h2 {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-bar-content {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 480px) {
    .logo-text span {
        font-size: 1.2rem;
    }

    .logo-text small {
        font-size: 0.6rem;
    }

    .logo-wrapper {
        width: 40px;
        height: 40px;
    }

    .logo-img {
        height: 35px;
        max-width: 40px;
    }

    .logo-fallback {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .slide {
        padding: 30px 20px;
        min-height: 350px;
    }

    .slide-content h2 {
        font-size: 1.6rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slider-controls {
        bottom: 15px;
        right: 15px;
    }

        .slider-controls button {
            width: 38px;
            height: 38px;
            font-size: 0.9rem;
        }

    .slider-dots {
        left: 15px;
        bottom: 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-bar-content {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-tech {
        flex-direction: column;
        gap: 8px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}


/* ===== Reset & Base ===== */
/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #f8fafc;
    color: #0b1a33;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}*/

/* ===== Navigation ===== */
/*.navbar {
    background: #0b1a33;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(94, 224, 250, 0.2), rgba(94, 224, 250, 0.05));
    border-radius: 14px;
    color: #5ee0fa;
    font-size: 2rem;
    flex-shrink: 0;
    border: 1px solid rgba(94, 224, 250, 0.1);
    transition: transform 0.3s;
}

.logo:hover .logo-icon {
    transform: rotate(-10deg) scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

    .logo-text span {
        font-weight: 800;
        font-size: 1.6rem;
        color: #f0f9ff;
        letter-spacing: -0.02em;
        line-height: 1.2;
    }

    .logo-text .highlight {
        color: #5ee0fa;
    }

    .logo-text small {
        font-size: 0.7rem;
        color: #b6cde0;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-weight: 400;
    }

.nav-links {
    display: flex;
    gap: 30px;
    font-weight: 500;
}

    .nav-links a {
        color: #e2edf7;
        text-decoration: none;
        transition: color 0.3s, transform 0.2s;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.95rem;
    }

        .nav-links a:hover {
            color: #5ee0fa;
            transform: translateY(-2px);
        }

        .nav-links a i {
            font-size: 1.1rem;
        }

.hamburger {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
}*/

/* ===== Hero Slider ===== */
/*.hero-slider {
    position: relative;
    overflow: hidden;
    background: #0d2847;
    margin: 0 0 20px 0;
}

.slider-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    min-height: 500px;
}

.slide {
    flex: 0 0 100%;
    min-height: 500px;
    padding: 60px 80px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

    .slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, rgba(11, 26, 51, 0.85) 0%, rgba(11, 26, 51, 0.4) 100%);
    }

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

    .slide-content h2 {
        font-size: 3rem;
        font-weight: 800;
        color: white;
        margin-bottom: 15px;
        line-height: 1.2;
    }

        .slide-content h2 i {
            color: #5ee0fa;
            margin-right: 15px;
        }

    .slide-content p {
        font-size: 1.2rem;
        color: rgba(255,255,255,0.9);
        margin-bottom: 25px;
        line-height: 1.6;
    }

.btn-outline-light {
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    padding: 14px 35px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
}

    .btn-outline-light:hover {
        background: white;
        color: #0b1a33;
        border-color: white;
        transform: scale(1.02);
    }

.slider-controls {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

    .slider-controls button {
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.2);
        width: 48px;
        height: 48px;
        border-radius: 50%;
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

        .slider-controls button:hover {
            background: #5ee0fa;
            color: #0b1a33;
            transform: scale(1.05);
        }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 40px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

    .dot:hover {
        background: rgba(255,255,255,0.7);
    }

    .dot.active {
        background: #5ee0fa;
        width: 35px;
        border-radius: 10px;
    }

.badge-pulse {
    display: inline-block;
    background: #00bcd4;
    color: #0b1a33;
    padding: 6px 18px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
}*/

/* ===== Stats Section ===== */
/*.stats-section {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid #eef3f8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
}

    .stat-item i {
        font-size: 2.5rem;
        color: #0f3b6a;
        background: #e6f0fa;
        padding: 15px;
        border-radius: 16px;
    }

    .stat-item h3 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0b1a33;
        margin-bottom: 2px;
    }

    .stat-item p {
        color: #5d738b;
        font-size: 0.9rem;
    }*/

/* ===== Services Overview ===== */
/*.services-overview {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #0b1a33;
        margin-bottom: 10px;
    }

        .section-header h2 i {
            color: #0f3b6a;
            margin-right: 15px;
        }

    .section-header p {
        color: #5d738b;
        font-size: 1.1rem;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.03);
    border: 1px solid #eef3f8;
    transition: all 0.3s;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.08);
        border-color: #cbddee;
    }

    .service-card i {
        font-size: 3rem;
        color: #0f3b6a;
        background: #e6f0fa;
        padding: 20px;
        border-radius: 50%;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
        color: #0b1a33;
    }

    .service-card p {
        color: #5d738b;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .service-card .price {
        font-size: 1.5rem;
        font-weight: 700;
        color: #0f3b6a;
        margin: 15px 0;
    }

.btn-primary {
    display: inline-block;
    background: #0b1a33;
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

    .btn-primary:hover {
        background: #1a3a5c;
        transform: scale(1.02);
    }*/

/* ===== Contact Info Bar ===== */
/*.contact-info-bar {
    background: #0b1a33;
    padding: 20px 0;
}

.contact-bar-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

    .contact-item i {
        font-size: 1.5rem;
        color: #5ee0fa;
        width: 45px;
        height: 45px;
        background: rgba(94, 224, 250, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-item span {
        display: block;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #b6cde0;
        margin-bottom: 2px;
    }

    .contact-item strong {
        font-size: 0.95rem;
        font-weight: 600;
    }

.address-item {
    grid-column: span 1;
}*/

/* ===== Footer ===== */
/*.footer {
    background: #0b1a33;
    color: #b6cde0;
    padding: 50px 0 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(94, 224, 250, 0.1);
    border-radius: 12px;
    color: #5ee0fa;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.footer-logo h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-logo p {
    font-size: 0.85rem;
    color: #b6cde0;
}

.footer-contact p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .footer-contact p i {
        color: #5ee0fa;
        width: 20px;
    }

.footer-column h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

    .footer-column ul li {
        margin-bottom: 10px;
    }

        .footer-column ul li a {
            color: #b6cde0;
            text-decoration: none;
            transition: color 0.3s;
        }

            .footer-column ul li a:hover {
                color: #5ee0fa;
            }

.footer-column p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .footer-column p i {
        color: #5ee0fa;
        width: 20px;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

    .footer-bottom p {
        font-size: 0.9rem;
        opacity: 0.7;
    }

.footer-tech {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
}

    .footer-tech span i {
        color: #5ee0fa;
        margin-right: 5px;
    }*/

/* ===== Responsive ===== */
/*@media screen and (max-width: 820px) {
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 15px;
        background: #0f2847;
        border-radius: 16px;
        margin-top: 15px;
    }

        .nav-links.open {
            display: flex;
        }

    .hamburger {
        display: block;
    }

    .slide {
        padding: 40px 30px;
        min-height: 400px;
    }

    .slide-content h2 {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-bar-content {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 480px) {
    .logo-text span {
        font-size: 1.2rem;
    }

    .logo-text small {
        font-size: 0.6rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .slide {
        padding: 30px 20px;
        min-height: 350px;
    }

    .slide-content h2 {
        font-size: 1.6rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slider-controls {
        bottom: 15px;
        right: 15px;
    }

        .slider-controls button {
            width: 38px;
            height: 38px;
            font-size: 0.9rem;
        }

    .slider-dots {
        left: 15px;
        bottom: 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-bar-content {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-tech {
        flex-direction: column;
        gap: 8px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}*/


/* ===== Reset & Base ===== */
/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #f8fafc;
    color: #0b1a33;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}*/

/* ===== Navigation - Centered ===== */
/*.navbar {
    background: #0b1a33;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

    .logo-text span {
        font-weight: 800;
        font-size: 1.6rem;
        color: #f0f9ff;
        letter-spacing: -0.02em;
        line-height: 1.2;
    }

    .logo-text .highlight {
        color: #5ee0fa;
    }

    .logo-text small {
        font-size: 0.7rem;
        color: #b6cde0;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-weight: 400;
    }

.nav-links {
    display: flex;
    gap: 30px;
    font-weight: 500;
}

    .nav-links a {
        color: #e2edf7;
        text-decoration: none;
        transition: color 0.3s, transform 0.2s;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.95rem;
    }

        .nav-links a:hover {
            color: #5ee0fa;
            transform: translateY(-2px);
        }

        .nav-links a i {
            font-size: 1.1rem;
        }

.hamburger {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
}*/

/* ===== Hero Slider with Pictures ===== */
/*.hero-slider {
    position: relative;
    overflow: hidden;
    background: #0d2847;
    margin: 0 0 20px 0;
    border-radius: 0;
}

.slider-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    min-height: 550px;
}

.slide {
    flex: 0 0 100%;
    min-height: 550px;
    padding: 60px 80px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

    .slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, rgba(11, 26, 51, 0.85) 0%, rgba(11, 26, 51, 0.4) 100%);
    }

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

    .slide-content h2 {
        font-size: 3rem;
        font-weight: 800;
        color: white;
        margin-bottom: 15px;
        line-height: 1.2;
    }

        .slide-content h2 i {
            color: #5ee0fa;
            margin-right: 15px;
        }

    .slide-content p {
        font-size: 1.2rem;
        color: rgba(255,255,255,0.9);
        margin-bottom: 25px;
        line-height: 1.6;
    }

.badge-pulse {
    display: inline-block;
    background: #00bcd4;
    color: #0b1a33;
    padding: 6px 18px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
}

.btn-outline-light {
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    padding: 14px 35px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
}

    .btn-outline-light:hover {
        background: white;
        color: #0b1a33;
        border-color: white;
        transform: scale(1.02);
    }

.slider-controls {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

    .slider-controls button {
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.2);
        width: 48px;
        height: 48px;
        border-radius: 50%;
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

        .slider-controls button:hover {
            background: #5ee0fa;
            color: #0b1a33;
            transform: scale(1.05);
        }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 40px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

    .dot:hover {
        background: rgba(255,255,255,0.7);
    }

    .dot.active {
        background: #5ee0fa;
        width: 35px;
        border-radius: 10px;
    }*/

/* ===== Stats Section ===== */
/*.stats-section {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid #eef3f8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
}

    .stat-item i {
        font-size: 2.5rem;
        color: #0f3b6a;
        background: #e6f0fa;
        padding: 15px;
        border-radius: 16px;
    }

    .stat-item h3 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0b1a33;
        margin-bottom: 2px;
    }

    .stat-item p {
        color: #5d738b;
        font-size: 0.9rem;
    }*/

/* ===== Services Overview ===== */
/*.services-overview {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #0b1a33;
        margin-bottom: 10px;
    }

        .section-header h2 i {
            color: #0f3b6a;
            margin-right: 15px;
        }

    .section-header p {
        color: #5d738b;
        font-size: 1.1rem;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.03);
    border: 1px solid #eef3f8;
    transition: all 0.3s;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.08);
        border-color: #cbddee;
    }

    .service-card i {
        font-size: 3rem;
        color: #0f3b6a;
        background: #e6f0fa;
        padding: 20px;
        border-radius: 50%;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
        color: #0b1a33;
    }

    .service-card p {
        color: #5d738b;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .service-card .price {
        font-size: 1.5rem;
        font-weight: 700;
        color: #0f3b6a;
        margin: 15px 0;
    }

.btn-primary {
    display: inline-block;
    background: #0b1a33;
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

    .btn-primary:hover {
        background: #1a3a5c;
        transform: scale(1.02);
    }*/

/* ===== Contact Info Bar ===== */
/*.contact-info-bar {
    background: #0b1a33;
    padding: 20px 0;
}

.contact-bar-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

    .contact-item i {
        font-size: 1.5rem;
        color: #5ee0fa;
        width: 45px;
        height: 45px;
        background: rgba(94, 224, 250, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-item span {
        display: block;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #b6cde0;
        margin-bottom: 2px;
    }

    .contact-item strong {
        font-size: 0.95rem;
        font-weight: 600;
    }

.address-item {
    grid-column: span 1;
}*/

/* ===== Footer - Centered ===== */
/*.footer {
    background: #0b1a33;
    color: #b6cde0;
    padding: 50px 0 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-logo p {
    font-size: 0.85rem;
    color: #b6cde0;
}

.footer-contact p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .footer-contact p i {
        color: #5ee0fa;
        width: 20px;
    }

.footer-column h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

    .footer-column ul li {
        margin-bottom: 10px;
    }

        .footer-column ul li a {
            color: #b6cde0;
            text-decoration: none;
            transition: color 0.3s;
        }

            .footer-column ul li a:hover {
                color: #5ee0fa;
            }

.footer-column p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .footer-column p i {
        color: #5ee0fa;
        width: 20px;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    text-align: center;
}

    .footer-bottom p {
        font-size: 0.9rem;
        opacity: 0.7;
    }

.footer-tech {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
}

    .footer-tech span i {
        color: #5ee0fa;
        margin-right: 5px;
    }*/

/* ===== Contact Page ===== */
/*.contact-page {
    padding: 20px 0 40px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-info-panel {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    border: 1px solid #eef3f8;
}

    .contact-info-panel h3 {
        margin-bottom: 25px;
        color: #0b1a33;
    }

        .contact-info-panel h3 i {
            color: #0f3b6a;
            margin-right: 10px;
        }

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid #f0f4f8;
}

    .info-item:last-child {
        border-bottom: none;
    }

    .info-item i {
        font-size: 1.5rem;
        color: #0f3b6a;
        width: 45px;
        height: 45px;
        background: #eaf2fa;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .info-item label {
        display: block;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #5d738b;
        margin-bottom: 3px;
    }

    .info-item p {
        font-weight: 600;
        color: #0b1a33;
    }

    .info-item a {
        color: #0b1a33;
        text-decoration: none;
    }

.contact-form-panel {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    border: 1px solid #eef3f8;
}

    .contact-form-panel h3 {
        margin-bottom: 25px;
        color: #0b1a33;
    }

        .contact-form-panel h3 i {
            color: #0f3b6a;
            margin-right: 10px;
        }

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-weight: 600;
        margin-bottom: 6px;
        color: #0b1a33;
        font-size: 0.95rem;
    }

    .form-group .required {
        color: #e74c3c;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #e5edf5;
        border-radius: 12px;
        font-size: 1rem;
        transition: all 0.3s;
        font-family: inherit;
        background: #fafbfc;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #0f3b6a;
            background: white;
            box-shadow: 0 0 0 3px rgba(15, 59, 106, 0.1);
        }

.btn-submit {
    background: #0b1a33;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .btn-submit:hover {
        background: #1a3a5c;
        transform: scale(1.02);
    }

    .btn-submit:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 15px 20px;
    border-radius: 12px;
    border-left: 4px solid #4caf50;
}

.alert-error {
    background: #ffebee;
    color: #c62828;
    padding: 15px 20px;
    border-radius: 12px;
    border-left: 4px solid #ef5350;
}

    .alert-success i,
    .alert-error i {
        margin-right: 10px;
    }*/

/* ===== Services Page ===== */
/*.page-header {
    text-align: center;
    margin: 40px 0 30px 0;
    padding: 40px 0;
    background: linear-gradient(135deg, #0b1a33, #1a3a5c);
    border-radius: 20px;
    color: white;
}

    .page-header h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

        .page-header h1 i {
            color: #5ee0fa;
            margin-right: 15px;
        }

    .page-header p {
        color: #b6cde0;
        font-size: 1.1rem;
    }

.services-full-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.service-full-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 30px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    border: 1px solid #eef3f8;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .service-full-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    }

.service-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #e6f0fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .service-icon i {
        font-size: 2.5rem;
        color: #0f3b6a;
    }

.service-details {
    flex: 1;
}

    .service-details h3 {
        font-size: 1.5rem;
        color: #0b1a33;
        margin-bottom: 10px;
    }

    .service-details p {
        color: #5d738b;
        margin-bottom: 15px;
        line-height: 1.6;
    }

.service-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 15px;
}

    .service-features li {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.9rem;
        color: #0b1a33;
    }

        .service-features li i {
            color: #00bcd4;
        }

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f3b6a;
    margin: 15px 0;
}*/

/* ===== Responsive ===== */
/*@media screen and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 820px) {
    .navbar .container {
        justify-content: space-between;
        gap: 10px;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 15px;
        background: #0f2847;
        border-radius: 16px;
        margin-top: 15px;
    }

        .nav-links.open {
            display: flex;
        }

    .hamburger {
        display: block;
    }

    .slide {
        padding: 40px 30px;
        min-height: 400px;
    }

    .slide-content h2 {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-bar-content {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .logo-text span {
        font-size: 1.2rem;
    }

    .logo-text small {
        font-size: 0.6rem;
    }

    .logo-img {
        height: 35px;
    }

    .slide {
        padding: 30px 20px;
        min-height: 350px;
    }

    .slide-content h2 {
        font-size: 1.6rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slider-controls {
        bottom: 15px;
        right: 15px;
    }

        .slider-controls button {
            width: 38px;
            height: 38px;
            font-size: 0.9rem;
        }

    .slider-dots {
        left: 15px;
        bottom: 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-bar-content {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-column p {
        justify-content: center;
    }

    .footer-tech {
        flex-direction: column;
        gap: 8px;
    }

    .service-full-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .service-icon {
        margin: 0 auto;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        gap: 20px;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 20px;
    }
}*/

/* ===== Animations ===== */
/*@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.service-full-card {
    animation: fadeInUp 0.6s ease-out;
}

    .service-card:nth-child(2) {
        animation-delay: 0.1s;
    }

    .service-card:nth-child(3) {
        animation-delay: 0.2s;
    }*/
