:root {
    --bg-dark: #0a0d0c;
    --bg-card: #111a14;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent-primary: #86efac;
    --accent-secondary: #4ade80;
    --border-color: rgba(255, 255, 255, 0.08);
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

/* Preloader */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.svg-container {
    width: 90%;
    max-width: 1200px;
}

@media (min-width: 769px) {
    .svg-container {
        width: 60%;
        max-width: 700px;
    }
}

.svg-container svg {
    width: 100%;
    height: auto;
    overflow: visible;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #475569;
}



/* Hero Section */
.hero {
    height: 100svh;
    width: 100%;
    background-image: url('./assets/descktopConstraction.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-color: var(--bg-dark);
}

@media (max-width: 768px) {
    .hero {
        background-image: url('./assets/mobileConstraction.png');
        background-size: 100% 100%;
    }
}

.scroll-indicator {
    margin-bottom: 2rem;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    animation: bounce 2s infinite;
    opacity: 0.8;
    transition: opacity 0.3s;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    z-index: 10;
}

.scroll-indicator:hover {
    opacity: 1;
}

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

/* Typography Utilities */
.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

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

.service-card {
    background: linear-gradient(145deg, var(--bg-card), rgba(17, 24, 39, 0.6));
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(134, 239, 172, 0.15), rgba(74, 222, 128, 0.15));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(134, 239, 172, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(134, 239, 172, 0.15);
}

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

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.service-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: radial-gradient(circle at center top, #111a14 0%, #0a0d0c 100%);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.contact-subtitle {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 600px;
    margin: -2rem auto 3rem;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.contact-icon i {
    font-size: 1.75rem;
}

.contact-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(255, 255, 255, 0.08);
}

/* Brand specific hover effects */
.contact-icon.whatsapp:hover {
    border-color: #25D366;
    color: #25D366;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.15);
}

.contact-icon.email:hover {
    border-color: #ea4335;
    color: #ea4335;
    box-shadow: 0 10px 20px rgba(234, 67, 53, 0.15);
}

.contact-icon.instagram:hover {
    border-color: #E1306C;
    color: #E1306C;
    box-shadow: 0 10px 20px rgba(225, 48, 108, 0.15);
}

.contact-icon.facebook:hover {
    border-color: #1877F2;
    color: #1877F2;
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.15);
}

.contact-icon.linkedin:hover {
    border-color: #0A66C2;
    color: #0A66C2;
    box-shadow: 0 10px 20px rgba(10, 102, 194, 0.15);
}

.contact-icon.phone:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    box-shadow: 0 10px 20px rgba(134, 239, 172, 0.15);
}

/* Footer */
.footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
    background: #020617;
    color: var(--text-muted);
}

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