:root {
    /* Color Palette - Blue Theme */
    --primary-blue: #0A2463;
    --secondary-blue: #1E5A9C;
    --accent-blue: #3E92CC;
    --light-blue: #5FB3E6;
    --pale-blue: #E8F4F8;
    --white: #FFFFFF;
    --dark: #0D1B2A;
    --text-primary: #1B2838;
    --text-secondary: #5A6F7D;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
}

html {
    scroll-behavior: smooth;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.98) 0%, rgba(30, 90, 156, 0.95) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(10, 36, 99, 0.1);
    transition: var(--transition);
    z-index: 1000;
}

header.scrolled {
    background: linear-gradient(135deg, rgba(10, 36, 99, 1) 0%, rgba(30, 90, 156, 1) 100%);
    box-shadow: 0 8px 40px rgba(10, 36, 99, 0.2);
}

.navbar {
    padding: 1.2rem 0;
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    transition: var(--transition);
}

.brand-noxti {
    color: var(--white);
}

.brand-money {
    color: var(--light-blue);
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1.2rem !important;
    margin: 0 0.2rem;
    position: relative;
    transition: var(--transition);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--light-blue);
    transform: translateX(-50%);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--white) !important;
}

.nav-link:hover::before {
    width: 60%;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--accent-blue) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(62, 146, 204, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(95, 179, 230, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeIn 1s ease-out 0.2s backwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.text-gradient {
    background: linear-gradient(135deg, var(--light-blue) 0%, #A8DADC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

/* Buttons */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(62, 146, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(62, 146, 204, 0.4);
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
    color: var(--white);
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 40%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, 30px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, 50px) rotate(180deg);
    }
    75% {
        transform: translate(-40px, -30px) rotate(270deg);
    }
}

/* Section Styling */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    color: var(--accent-blue);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--light-blue) 100%);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--pale-blue) 100%);
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.about-feature {
    text-align: center;
    padding: 2rem 1rem;
    transition: var(--transition);
    border-radius: 20px;
}

.about-feature:hover {
    background: var(--white);
    box-shadow: 0 15px 40px rgba(10, 36, 99, 0.1);
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.about-feature:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.about-feature h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-feature p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Services Section */
.services-section {
    background: var(--white);
}

.service-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    border: 2px solid var(--pale-blue);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.service-card:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 20px 60px rgba(10, 36, 99, 0.12);
    transform: translateY(-10px);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-color: var(--primary-blue);
    color: var(--white);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--light-blue);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(62, 146, 204, 0.3);
}

.service-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--accent-blue) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.service-card.featured .service-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.service-card:hover .service-icon-wrapper {
    transform: rotate(-5deg) scale(1.05);
}

.service-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.service-card.featured h3 {
    color: var(--white);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-features i {
    color: var(--accent-blue);
    font-size: 1.2rem;
}

.service-card.featured .service-features i {
    color: var(--light-blue);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--pale-blue) 0%, var(--white) 100%);
    padding: var(--section-padding) 0;
}

.contact-info {
    padding-right: 3rem;
}

.contact-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-content h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-content p,
.contact-content a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-content a:hover {
    color: var(--accent-blue);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(10, 36, 99, 0.08);
}

.form-label {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
}

.form-control,
.form-select {
    padding: 1rem 1.5rem;
    border: 2px solid var(--pale-blue);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(62, 146, 204, 0.1);
    outline: none;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 3rem 0;
    margin-top: var(--section-padding);
}

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

.footer-brand {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 991px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 3rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 575px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .about-feature,
    .service-card {
        margin-bottom: 2rem;
    }
}
