/* Variables */
:root {
    /* Color Palette - Lucilla Limited Corporate Identity */
    --clr-bg: #00172a;
    --clr-bg-alt: #011e38;
    --clr-primary: #b58d36;
    --clr-primary-hover: #cc9f3c;
    --clr-gradient-start: #b58d36;
    --clr-gradient-end: #d6af53;
    --clr-accent: #a3b2c2;
    --clr-text-main: #f8fafc;
    --clr-text-muted: #94a3b8;
    --clr-glass: rgba(255, 255, 255, 0.04);
    --clr-glass-border: rgba(255, 255, 255, 0.08);
    --clr-black-alpha: rgba(0, 0, 0, 0.6);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows and Borders */
    --box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --radius: 12px;
    --radius-lg: 20px;
}

/* Reset Component */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--clr-bg);
    color: var(--clr-text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.container-sm {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.bg-darker {
    background-color: var(--clr-bg-alt);
}

.section {
    padding: 100px 0;
}

.mt-4 {
    margin-top: 2rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
}

.section-subtitle {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.text-gradient {
    background: linear-gradient(to right, var(--clr-gradient-start), var(--clr-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-gradient-start), var(--clr-gradient-end));
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--clr-text-main);
    border: 1px solid var(--clr-glass-border);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--clr-glass);
    border-color: var(--clr-text-muted);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(9, 11, 20, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--clr-glass-border);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 1px;
}

.logo-mark {
    color: var(--clr-primary);
    font-size: 1.8rem;
}

.logo-light {
    font-weight: 300;
    color: var(--clr-text-muted);
}

.nav-logo {
    height: 103px;
    width: auto;
    display: block;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.5));
}

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

.nav-link {
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--clr-text-main);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--clr-primary);
}

.nav-link.btn-primary {
    color: #fff;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    /* Offset for navbar */
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15), transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.15), transparent 40%);
    z-index: -1;
}

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

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: var(--clr-glass);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid var(--clr-glass-border);
    padding-top: 2rem;
}

.stat-item {
    font-family: var(--font-heading);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.hero-visual {
    position: relative;
}

.glass-card {
    background: var(--clr-glass);
    border: 1px solid var(--clr-glass-border);
    border-radius: var(--radius-lg);
    padding: 1rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    display: block;
    object-fit: cover;
    max-height: 600px;
}

.floating-badge {
    position: absolute;
    background: rgba(15, 18, 33, 0.85);
    border: 1px solid var(--clr-glass-border);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    box-shadow: var(--box-shadow);
    animation: float 6s ease-in-out infinite;
}

.floating-badge i {
    color: var(--clr-accent);
    font-size: 1.2rem;
}

.floating-badge.top-right {
    top: -20px;
    right: -20px;
}

.floating-badge.bottom-left {
    bottom: -20px;
    left: -20px;
    animation-delay: -3s;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Features Component */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--clr-bg);
    border: 1px solid var(--clr-glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(59, 130, 246, 0.3);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--clr-primary);
    margin-bottom: 1.5rem;
    transition: background 0.3s ease;
}

.feature-card:hover .icon-box {
    background: linear-gradient(135deg, var(--clr-gradient-start), var(--clr-gradient-end));
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.feature-card p {
    color: var(--clr-text-muted);
}

/* Services */
.services-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.custom-list {
    margin-bottom: 2rem;
}

.custom-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--clr-text-muted);
}

.custom-list i {
    color: var(--clr-accent);
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-block {
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-glass-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.service-block:hover {
    border-color: var(--clr-primary);
    background: var(--clr-bg);
}

.service-icon {
    font-size: 2rem;
    color: var(--clr-primary);
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: var(--radius);
}

.highlight-block {
    background: linear-gradient(to right, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-color: rgba(139, 92, 246, 0.3);
}

.highlight-block .service-icon {
    color: var(--clr-gradient-end);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid var(--clr-glass-border);
    padding: 4rem 2rem;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--clr-primary);
    filter: blur(100px);
    opacity: 0.3;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: var(--clr-gradient-end);
    filter: blur(100px);
    opacity: 0.3;
}

.input-group {
    display: flex;
    width: 100%;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.input-group input {
    flex-grow: 1;
    padding: 1rem 1.5rem;
    border-radius: var(--radius) 0 0 var(--radius);
    border: 1px solid var(--clr-glass-border);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: var(--clr-primary);
}

.input-group button {
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* Footer */
.footer {
    background: #05060b;
    padding: 80px 0 30px;
    border-top: 1px solid var(--clr-glass-border);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--clr-text-muted);
    margin: 1.5rem auto;
    max-width: 400px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clr-glass);
    border: 1px solid var(--clr-glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--clr-primary);
    color: #fff;
    border-color: var(--clr-primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 1.5rem;
}

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

.footer-links ul a {
    color: var(--clr-text-muted);
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    color: #52525b;
    border-top: 1px solid var(--clr-glass-border);
    padding-top: 2rem;
}

/* Animations Config */
.fade-in-up,
.fade-in-left,
.fade-in-right,
.reveal {
    opacity: 0;
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 1s ease forwards 0.3s;
}

.fade-in-right {
    animation: fadeInRight 1s ease forwards 0.3s;
}

.reveal.active {
    animation: fadeInUp 0.8s ease forwards;
}

.reveal-delay-1 {
    animation-delay: 0.2s;
}

.reveal-delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media screen and (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-container,
    .features-grid,
    .services-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        justify-content: space-between;
        gap: 1rem;
    }

    .hero {
        padding-top: 120px;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

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

    .hero-stats {
        flex-wrap: wrap;
    }

    .services-info {
        text-align: center;
        order: 2;
        margin-top: 2rem;
    }

    .services-info .section-subtitle {
        text-align: center;
    }

    .custom-list li {
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--clr-bg);
        flex-direction: column;
        padding: 2rem 0;
        border-bottom: 1px solid var(--clr-glass-border);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media screen and (max-width: 576px) {

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

    .input-group {
        flex-direction: column;
        gap: 1rem;
    }

    .input-group input,
    .input-group button {
        border-radius: var(--radius);
        width: 100%;
    }
}