@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@500;600;700;800&display=swap');

:root {
    --primary: hsl(210, 100%, 45%);
    --primary-light: hsl(200, 100%, 60%);
    --secondary: hsl(25, 95%, 55%);
    --accent: hsl(180, 100%, 50%);
    --bg-dark: #05070a;
    --bg-card: rgba(15, 20, 30, 0.7);
    --text-white: #ffffff;
    --text-dim: #94a3b8;
    --glass-border: rgba(255, 255, 255, 0.1);
    --glow: rgba(0, 100, 255, 0.3);
    --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 12, 18, 0.8);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-light);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary-light);
}

.cta-button {
    background: linear-gradient(135deg, var(--secondary), #f39c12);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(230, 126, 34, 0.4);
}

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 60px;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150vw;
    height: 150vw;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
    animation: fadeInSlide 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #aeb9cc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(45deg, #1e293b, #0f172a);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 0 40px var(--glow), 0 30px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid var(--glass-border);
}

.hero-image img,
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    background-color: #0f172a;
}

.services {
    padding: 8rem 0;
}

.section-tag {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.2);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    display: block;
}

.info-bar {
    background: var(--primary);
    padding: 4rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.contact {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--bg-dark), #0a0c12);
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.phone-number {
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 800;
    margin: 2rem 0;
    color: white;
    text-decoration: none;
    display: block;
    transition: var(--transition);
}

.phone-number:hover {
    color: var(--secondary);
    transform: scale(1.02);
}

footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom {
    margin-top: 4rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        text-align: center;
        padding-top: 100px;
    }

    .hero-content {
        align-items: center;
    }

    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image,
    .about-image {
        height: 300px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .contact-card {
        padding: 3rem 1.5rem;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    padding: 4rem;
    border-radius: 40px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.about-image {
    border-radius: 40px;
    overflow: hidden;
    height: 550px;
    border: 1px solid var(--glass-border);
    background: linear-gradient(135deg, #161a23, #05070a);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--glow), transparent);
    opacity: 0.2;
    pointer-events: none;
}