@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary: #041a1a;
    --secondary: #0a2e2e;
    --accent: #00d2d2;
    --accent-glow: rgba(0, 210, 210, 0.4);
    --text: #ffffff;
    --text-muted: #809a9a;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.1);
    --glass: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Texture Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1000;
}

/* Background Animation */
.bg-blob {
    position: fixed;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow) 0%, rgba(6, 44, 44, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
    animation: float 25s infinite alternate ease-in-out;
}

.blob-1 {
    top: -300px;
    right: -200px;
}

.blob-2 {
    bottom: -300px;
    left: -200px;
    animation-delay: -7s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 150px) scale(1.2);
    }
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Socials */
.main-header {
    width: 100%;
    padding: 2rem 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: flex-end;
}

.header-social {
    display: flex;
    gap: 1.2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1.4rem;
    background: var(--glass);
    border: 1px solid var(--card-border);
    border-radius: 100px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
}

.social-link i {
    font-size: 1.1rem;
    color: var(--accent);
}

.social-link:hover {
    color: var(--text);
    border-color: var(--accent);
    transform: translateY(-3px);
    background: rgba(0, 210, 210, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .main-header {
        position: relative;
        padding: 1.5rem 0;
    }

    .header-content {
        justify-content: center;
    }

    .header-social {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }
}

/* Logo Design */
.logo-container {
    margin-bottom: 2.5rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 210, 210, 0.2));
}

/* Maintenance Badge */
.maintenance-badge {
    background: rgba(0, 210, 210, 0.1);
    border: 1px solid rgba(0, 210, 210, 0.2);
    padding: 0.6rem 1.8rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    letter-spacing: 1px;
}

.maintenance-badge i {
    font-size: 0.9rem;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Hero Content */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
    margin-bottom: 3.5rem;
}

/* Services Grid */
.services-section {
    padding: 10rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--card-bg);
    padding: 3.5rem 2.5rem;
    border-radius: 32px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid var(--card-border);
    position: relative;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 210, 210, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 210, 210, 0.2), rgba(0, 210, 210, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    color: var(--accent);
    border: 1px solid rgba(0, 210, 210, 0.2);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Contact Info */
.contact-links {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    border-radius: 16px;
    background: var(--glass);
    border: 1px solid var(--card-border);
}

.contact-item:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(0, 210, 210, 0.05);
    transform: scale(1.05);
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--accent);
}

/* Footer */
.contact-footer {
    padding: 6rem 0;
    text-align: center;
    opacity: 0.6;
}

/* Responsive Design System */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }

    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 6rem 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.15rem;
        margin-bottom: 2.5rem;
    }

    .services-section {
        padding: 7rem 0;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .logo-img {
        max-width: 240px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    /* Header Adjustment */
    .main-header {
        position: relative;
        padding: 1.5rem 0;
    }

    .header-content {
        justify-content: center;
    }

    .header-social {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }

    .social-link {
        padding: 0.6rem 1.1rem;
        font-size: 0.85rem;
    }

    /* Hero Adjustment */
    .hero {
        min-height: auto;
        padding: 4rem 0 6rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .logo-img {
        max-width: 200px;
    }

    .contact-links {
        flex-direction: column;
        gap: 1.2rem;
        width: 100%;
        max-width: 320px;
    }

    .contact-item {
        padding: 0.8rem 1.5rem;
        width: 100%;
        justify-content: center;
    }

    /* Services Adjustment */
    .services-section {
        padding: 5rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2.5rem 2rem;
        border-radius: 24px;
    }

    /* Background Adjustment */
    .bg-blob {
        width: 400px;
        height: 400px;
        filter: blur(50px);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .maintenance-badge {
        padding: 0.5rem 1.2rem;
        font-size: 0.75rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .contact-footer {
        font-size: 0.85rem;
    }
}