        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

        :root {
            --primary-orange: #FF6B35;
            --primary-blue: #1E3A8A;
            --light-blue: #3B82F6;
            --dark-blue: #1E40AF;
            --accent-orange: #FF8C42;
            --light-orange: #FFB085;
            --white: #FFFFFF;
            --light-gray: #F8FAFC;
            --medium-gray: #E2E8F0;
            --dark-gray: #334155;
            --text-dark: #1E293B;
            --text-light: #64748B;
            --shadow-light: rgba(0, 0, 0, 0.05);
            --shadow-medium: rgba(0, 0, 0, 0.1);
            --shadow-dark: rgba(0, 0, 0, 0.2);
            --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
            --gradient-blue: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
            --gradient-overlay: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(59, 130, 246, 0.8) 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        html {
            scroll-behavior: smooth;
        }

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

        h1, h2, h3, h4, .btn, .nav-links a {
            font-family: 'Poppins', sans-serif;
        }

         .cookies-popup {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(145deg, #131313 0%, #1a1a1a 100%);
            color: white;
            padding: 20px;
            box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
            z-index: 10000;
            transform: translateY(100%);
            transition: transform 0.4s ease-in-out;
            border-top: 3px solid #00A5E0;
        }

        .cookies-popup.show {
            transform: translateY(0);
        }

        .cookies-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .cookies-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .cookies-icon {
            font-size: 24px;
            color: #00A5E0;
        }

        .cookies-title {
            font-size: 18px;
            font-weight: 600;
            color: #00A5E0;
            margin: 0;
        }

        .cookies-text {
            font-size: 14px;
            line-height: 1.6;
            margin: 0 0 15px 0;
            opacity: 0.9;
        }

        .cookies-details {
            background: rgba(0, 165, 224, 0.1);
            border-radius: 6px;
            padding: 15px;
            margin: 10px 0;
            border-left: 3px solid #00A5E0;
            display: none;
        }

        .cookies-details.show {
            display: block;
        }

        .cookies-category {
            margin-bottom: 12px;
        }

        .cookies-category h4 {
            margin: 0 0 6px 0;
            color: #00A5E0;
            font-size: 14px;
            font-weight: 600;
        }

        .cookies-category p {
            margin: 0;
            font-size: 13px;
            opacity: 0.8;
            line-height: 1.5;
        }

        .cookies-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }

        .cookies-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            min-width: 120px;
        }

        .cookies-btn-accept {
            background: #00A5E0;
            color: white;
        }

        .cookies-btn-accept:hover {
            background: #0077A0;
            transform: translateY(-2px);
        }

        .cookies-btn-reject {
            background: transparent;
            color: #ccc;
            border: 1px solid #555;
        }

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

        .cookies-btn-settings {
            background: transparent;
            color: #00A5E0;
            border: 1px solid #00A5E0;
        }

        .cookies-btn-settings:hover {
            background: rgba(0, 165, 224, 0.1);
        }

        .cookies-link {
            color: #00A5E0;
            text-decoration: underline;
            cursor: pointer;
            font-size: 13px;
        }

        .cookies-link:hover {
            color: #0077A0;
        }

        .cookies-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cookies-toggle:last-child {
            border-bottom: none;
        }

        .cookies-toggle-info {
            flex: 1;
        }

        .cookies-toggle-title {
            font-size: 14px;
            font-weight: 600;
            margin: 0 0 4px 0;
        }

        .cookies-toggle-desc {
            font-size: 12px;
            opacity: 0.7;
            margin: 0;
        }

        .cookies-switch {
            position: relative;
            width: 50px;
            height: 24px;
            background: #555;
            border-radius: 12px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .cookies-switch.active {
            background: #00A5E0;
        }

        .cookies-switch:before {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            width: 20px;
            height: 20px;
            background: white;
            border-radius: 50%;
            transition: transform 0.3s ease;
        }

        .cookies-switch.active:before {
            transform: translateX(26px);
        }


        @media (max-width: 768px) {
            .cookies-popup {
                padding: 15px;
            }

            .cookies-content {
                gap: 12px;
            }

            .cookies-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .cookies-btn {
                width: 100%;
                min-width: unset;
            }

            .cookies-text {
                font-size: 13px;
            }

            .cookies-title {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .cookies-popup {
                padding: 12px;
            }

            .cookies-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        }

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

        .container-fluid {
            max-width: 100%;
            padding: 0 2rem;
        }


        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--medium-gray);
            z-index: 1000;
            transition: all 0.3s ease;
            padding: 1rem 0;
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 4px 20px var(--shadow-light);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-blue);
            transition: transform 0.3s ease;
        }

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

        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        .logo-text span.orange {
            color: var(--primary-orange);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary-orange);
            background: rgba(255, 107, 53, 0.1);
        }

        .nav-cta {
            background: var(--gradient-primary);
            color: white !important;
            font-weight: 600;
            padding: 0.75rem 1.5rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
            background: var(--primary-orange) !important;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0.5rem;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--text-dark);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 3px;
        }


.logo-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.logo-watermark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.services {
    position: relative;
    overflow: hidden;
}

.services .container {
    position: relative;
    z-index: 1;
}


.logo-icon-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
}

.logo-icon-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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


@media (max-width: 1024px) {
    .logo-watermark {
        width: 750px;
        height: 750px;
        opacity: 0.08;
    }


    .logo-icon-image {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .logo-watermark {
        width: 600px;
        height: 600px;
        opacity: 0.09;
    }

    .logo-icon-image {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .logo-watermark {
        width: 450px;
        height: 450px;
        opacity: 0.1;
    }

    .logo-icon-image {
        width: 50px;
        height: 50px;
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}


.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('aquaTeamLogo.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    z-index: 2;
    pointer-events: none;
}


.hero-slide[data-slide="0"] .hero-slide-bg::before,
.hero-slide[data-slide="1"] .hero-slide-bg::before,
.hero-slide[data-slide="2"] .hero-slide-bg::before,
.hero-slide[data-slide="3"] .hero-slide-bg::before,
.hero-slide[data-slide="4"] .hero-slide-bg::before {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.92) 0%, rgba(51, 65, 85, 0.88) 100%);
}

@media (max-width: 1024px) {
    .hero-slide-bg::after {
        background-size: cover;
        opacity: 0.05
    }
}

@media (max-width: 768px) {
    .hero-slide-bg::after {
        background-size: cover;
        opacity: 0.05
    }
}

@media (max-width: 480px) {
    .hero-slide-bg::after {
        background-size: cover;
        opacity: 0.05;
    }
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: white;
    animation: slideIn 0.8s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}


.hero-nav {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.hero-dots {
    display: flex;
    gap: 0.75rem;
}

.hero-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.hero-dot.active {
    background: white;
    border-color: white;
    width: 32px;
    border-radius: 6px;
}


.hero-slide-content .btn-primary {
    background: white;
    color: var(--primary-blue);
    border-color: white;
}

.hero-slide-content .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-orange);
}

.hero-slide-content .btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.hero-slide-content .btn-outline:hover {
    background: white;
    color: var(--primary-blue);
}


@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-nav {
        bottom: 2rem;
        gap: 1rem;
    }

    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .hero-slide-content {
        padding: 0 1rem;
    }

    .hero-nav-btn {
        display: none;
    }
}


        .features {
            padding: 8rem 0;
            background: var(--white);
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-badge {
            display: inline-block;
            background: rgba(255, 107, 53, 0.1);
            color: var(--primary-orange);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
            border: 1px solid rgba(255, 107, 53, 0.2);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .section-description {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 16px;
            border: 1px solid var(--medium-gray);
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px var(--shadow-light);
            border-color: var(--primary-orange);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.5rem;
            color: white;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }

        .feature-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .feature-text {
            color: var(--text-light);
            line-height: 1.6;
        }


        .about {
            padding: 8rem 0;
            background: var(--light-gray);
            position: relative;
        }

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

        .about-text {
            max-width: 600px;
        }

        .about-list {
            list-style: none;
            margin: 2rem 0;
        }

        .about-list li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        .about-list i {
            color: var(--primary-orange);
            font-size: 1.2rem;
            margin-top: 0.2rem;
            flex-shrink: 0;
        }

        .about-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about-image {
            width: 100%;
            max-width: 500px;
            height: 400px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            border: 1px solid var(--medium-gray);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid2" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid2)"/></svg>') center/cover;
        }

        .about-image-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: var(--text-light);
        }

        .about-image-content i {
            font-size: 4rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            opacity: 0.7;
        }


        .services {
            padding: 8rem 0;
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 16px;
            border: 1px solid var(--medium-gray);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-blue);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px var(--shadow-light);
            border-color: var(--primary-blue);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-blue);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            color: white;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
        }

        .service-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .service-text {
            color: var(--text-light);
            line-height: 1.6;
            flex-grow: 1;
            margin-bottom: 1.5rem;
        }


        .projects {
            padding: 8rem 0;
            background: var(--light-gray);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .project-card {
            aspect-ratio: 4/3;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            background: var(--medium-gray);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .project-card:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 40px var(--shadow-medium);
        }

        .project-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .project-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 2rem;
            color: white;
            opacity: 0;
            transition: all 0.3s ease;
        }

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


        .testimonials {
            padding: 8rem 0;
            background: white;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: white;
            padding: 2.5rem;
            border-radius: 16px;
            border: 1px solid var(--medium-gray);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px var(--shadow-light);
        }

        .testimonial-rating {
            color: #fbbf24;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
        }

        .testimonial-text {
            font-style: italic;
            color: var(--text-light);
            line-height: 1.8;
            flex-grow: 1;
            margin-bottom: 2rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--medium-gray);
        }

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

        .author-info h4 {
            color: var(--text-dark);
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .author-info p {
            color: var(--text-light);
            font-size: 0.9rem;
        }


        .contact {
            padding: 8rem 0;
            background: var(--light-gray);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 3rem;
        }

        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid var(--medium-gray);
            box-shadow: 0 10px 30px var(--shadow-light);
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            color: var(--text-dark);
            font-weight: 500;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--medium-gray);
            border-radius: 10px;
            background: white;
            color: var(--text-dark);
            font-size: 0.95rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
        }

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

        .submit-btn {
            width: 100%;
            background: var(--gradient-primary);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }

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

        .contact-card {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid var(--medium-gray);
            transition: all 0.3s ease;
        }
        
        .contact-card a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-orange);
}

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px var(--shadow-light);
        }

        .contact-card-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .contact-card h3 {
            color: var(--text-dark);
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .contact-card p,
        .contact-card a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-card a:hover {
            color: var(--primary-orange);
        }


        .footer {
            background: var(--primary-blue);
            color: white;
            padding: 4rem 0 2rem;
        }
        
        
.footer-bottom a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--primary-orange);
}

.footer-section p a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section p a:hover {
    color: var(--primary-orange);
}

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

        .footer-about .logo {
            color: white;
            margin-bottom: 1rem;
        }

        .footer-about .logo-text span.orange {
            color: var(--primary-orange);
        }

        .footer-about p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

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

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: var(--primary-orange);
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 107, 53, 0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary-orange);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }


.footer-logo-large {
    width: 360px;
    height: 360px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .footer-logo-large {
        width: 250px;
        height: 250px;
    }
}


        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 100;
            box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
        }

        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
        }


        .faq {
            padding: 8rem 0;
            background: white;
        }

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

        .faq-item {
            background: white;
            border: 1px solid var(--medium-gray);
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--primary-orange);
            box-shadow: 0 5px 15px var(--shadow-light);
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--primary-orange);
        }

        .faq-question.active {
            color: var(--primary-orange);
            background: rgba(255, 107, 53, 0.05);
        }

        .faq-icon {
            transition: transform 0.3s ease;
            color: var(--primary-orange);
        }

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

        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: var(--light-gray);
        }

        .faq-answer.active {
            padding: 1.5rem;
            max-height: 300px;
        }

        .faq-answer p {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .faq-answer p:last-child {
            margin-bottom: 0;
        }


        .message {
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            display: none;
        }

        .success-message {
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid #22c55e;
            color: #15803d;
        }

        .error-message {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid #ef4444;
            color: #dc2626;
        }


        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .hero::before {
                display: none;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                height: 100vh;
                background: white;
                flex-direction: column;
                justify-content: flex-start;
                padding: 6rem 2rem 2rem;
                transition: all 0.3s ease;
                box-shadow: -5px 0 20px var(--shadow-light);
                z-index: 999;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                padding: 1rem 0;
                border-bottom: 1px solid var(--medium-gray);
                width: 100%;
                text-align: left;
            }

            .nav-cta {
                margin-top: 1rem;
                text-align: center !important;
            }

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

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

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

            .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .features-grid,
            .services-grid,
            .projects-grid,
            .testimonial-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .container,
            .nav-container {
                padding: 0 1rem;
            }

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

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

            .contact-form {
                padding: 2rem;
            }
        }



.breadcrumb-bar {
    background: var(--light-gray);
    border-bottom: 1px solid var(--medium-gray);
    padding: 1rem 0;
    margin-top: 80px;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb-list a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: var(--primary-orange);
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--text-light);
    opacity: 0.6;
}

.breadcrumb-list li[aria-current="page"] {
    color: var(--text-dark);
    font-weight: 600;
}

.page-hero {
    padding: 6rem 0 5rem;
    background: var(--gradient-overlay), var(--gradient-blue);
    position: relative;
    overflow: hidden;
    color: white;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('aquaTeamLogo.png');
    background-size: 600px;
    background-repeat: no-repeat;
    background-position: right -120px center;
    opacity: 0.06;
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.page-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.page-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
}

.page-hero .hero-buttons {
    justify-content: flex-start;
}

.updated-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.article-section {
    padding: 5rem 0;
}

.article-section.alt {
    background: var(--light-gray);
}

.article-content {
    max-width: 850px;
    margin: 0 auto;
}

.article-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 3rem 0 1.25rem;
    line-height: 1.3;
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 2rem 0 0.75rem;
}

.article-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.article-content ul,
.article-content ol {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0 0 1.5rem 1.5rem;
}

.article-content li {
    margin-bottom: 0.6rem;
}

.article-content a {
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.article-content a:hover {
    border-bottom-color: var(--primary-orange);
    color: var(--dark-blue);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.stat-card {
    background: white;
    border: 1px solid var(--medium-gray);
    border-left: 4px solid var(--primary-orange);
    border-radius: 12px;
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-light);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.stat-source {
    display: block;
    color: var(--text-light);
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.glossary-list {
    display: grid;
    gap: 1.25rem;
    margin: 2rem 0;
}

.glossary-item {
    background: white;
    border: 1px solid var(--medium-gray);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
}

.glossary-item dt {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.glossary-item dd {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.process-steps {
    counter-reset: step-counter;
    list-style: none;
    margin: 2rem 0 !important;
    display: grid;
    gap: 1.25rem;
}

.process-steps li {
    counter-increment: step-counter;
    position: relative;
    background: white;
    border: 1px solid var(--medium-gray);
    border-radius: 12px;
    padding: 1.5rem 1.5rem 1.5rem 4.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.process-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.25rem;
    height: 2.25rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.process-steps strong {
    color: var(--text-dark);
}

.inline-photo {
    margin: 2.5rem 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-light);
}

.inline-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.inline-photo figcaption {
    background: white;
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 1rem 1.5rem;
    border: 1px solid var(--medium-gray);
    border-top: none;
}

.related-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.related-link-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    border: 1px solid var(--medium-gray);
    border-radius: 14px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-link-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 15px 35px var(--shadow-light);
}

.related-link-card .related-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--gradient-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.related-link-card h4 {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.related-link-card span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cta-banner {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 3.5rem;
    text-align: center;
    color: white;
    margin: 3rem 0 0;
}

.cta-banner h2 {
    color: white;
    margin-top: 0 !important;
    font-size: 1.85rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto 1.75rem;
}

.cta-banner .hero-buttons {
    justify-content: center;
}

.cta-banner .btn-primary {
    background: white;
    color: var(--primary-orange);
    border-color: white;
}

.cta-banner .btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-banner .btn-outline:hover {
    background: white;
    color: var(--primary-orange);
}

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: var(--light-gray);
}

.error-page-code {
    font-family: 'Poppins', sans-serif;
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.error-page h1 {
    font-size: 2rem;
    color: var(--text-dark);
    margin: 1rem 0;
}

.error-page p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .breadcrumb-bar {
        margin-top: 70px;
    }

    .page-hero {
        padding: 4rem 0 3rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .article-content h2 {
        font-size: 1.6rem;
    }

    .cta-banner {
        padding: 2.5rem 1.5rem;
    }

    .error-page-code {
        font-size: 5rem;
    }
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px var(--shadow-medium);
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.07);
}

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.blog-card-content h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.blog-card-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
}

.blog-card-link i {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-link i {
    transform: translateX(5px);
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.post-meta i {
    color: var(--primary-orange);
}

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

    .blog-card-image {
        height: 180px;
    }

    .post-meta {
        gap: 1rem;
        font-size: 0.85rem;
    }
}
