:root {
    --primary-blue: #a14599;
    --primary-green: #7e307a;
    --primary-gradient: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    --blue-gradient: linear-gradient(135deg, #a14599, #090a0a);
    --green-gradient: linear-gradient(135deg, #86c152, #689f38);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
}


body {
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden !important;
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(7, 7, 7, 0.07);
}

.glass-dark {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

/* Header */
#header {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    height: 80px;
    display: flex;
    align-items: center;
}

#header.header-scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
}

.nav-menu a {
    color: var(--text-dark) !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a:hover,
.nav-menu .menu-active a {
    color: var(--primary-blue) !important;
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    background: radial-gradient(circle at top right, rgba(68, 166, 241, 0.1), transparent),
        radial-gradient(circle at bottom left, rgba(134, 193, 82, 0.1), transparent);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: var(--primary-gradient);
    filter: blur(120px);
    opacity: 0.15;
    z-index: -1;
    border-radius: 50%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    /* background: linear-gradient(45deg, var(--primary-blue) 0%, var(--primary-green) 100%); */
    background: linear-gradient(259deg, rgba(26, 26, 31, 1) 4%, rgba(126, 48, 122, 1) 65%, rgba(161, 69, 153, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.btn-primary-custom {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(68, 166, 241, 0.3);
    color: white;
}

.glass-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 10px;
    border-radius: 12px;
    transition: all 0.3s;
}

.glass-btn:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.9);
}

/* Hero Visual Composition */
.hero-composition {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-circle {
    width: 280px;
    height: 280px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border: 8px solid rgba(255, 255, 255, 0.8);
}

.hero-main-circle i {
    font-size: 80px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.floating-glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 3;
    animation: float-alt 6s ease-in-out infinite;
    pointer-events: none;
}

.card-1 {
    top: 0%;
    right: 0%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 5%;
    left: 0%;
    animation-delay: 2s;
}

.card-3 {
    top: 15%;
    left: -5%;
    animation-delay: 4s;
}

.floating-glass-card i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.floating-glass-card span {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
}

@keyframes float-alt {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(10px, -15px);
    }

    66% {
        transform: translate(-5px, 10px);
    }
}

.blob-background {
    position: absolute;
    width: 450px;
    height: 450px;
    background: var(--primary-gradient);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
    animation: morph-alt 12s ease-in-out infinite;
}

@keyframes morph-alt {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Feature Section Improvements */
.features-container {
    padding: 120px 0;
    background: #fdfdfd;
    position: relative;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 50px 35px;
    border-radius: 32px;
    border: 1px solid rgba(68, 166, 241, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.feature-card:hover {
    background: #ffffff;
    transform: translateY(-12px);
    box-shadow: 0 40px 80px -20px rgba(68, 166, 241, 0.15);
    border-color: rgba(68, 166, 241, 0.3);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(68, 166, 241, 0.05) 0%, rgba(134, 193, 82, 0.05) 100%);
    border-radius: 32px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 36px;
    color: var(--primary-blue);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--primary-blue);
    color: white;
    transform: rotate(-5deg) scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 0;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(134, 193, 82, 0.1);
    color: var(--primary-green);
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Info Cards (What/Why) */
.info-card {
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
    background: var(--blue-gradient);
    box-shadow: 0 15px 35px rgba(68, 166, 241, 0.2);
}

.info-card.bg-green {
    background: var(--green-gradient);
    box-shadow: 0 15px 35px rgba(134, 193, 82, 0.2);
}

.info-card-overlay {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 150px;
    opacity: 0.1;
    transform: rotate(-15deg);
}

/* Section Headlines */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 4rem;
}

/* Benefits Section Refinement */
.benefits-section {
    padding: 100px 0;
    background: #f8fafc;
}

.benefit-visual-container {
    position: relative;
    padding: 30px;
    display: flex;
    justify-content: center;
}

.benefit-visual-circle {
    width: 350px;
    height: 350px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.benefit-visual-circle i {
    font-size: 150px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-visual-circle:hover i {
    transform: scale(1.1) rotate(5deg);
}

.benefit-visual-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: var(--primary-gradient);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    z-index: 1;
    animation: soft-glow 8s ease-in-out infinite;
}

@keyframes soft-glow {

    0%,
    100% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.floating-benefit-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    z-index: 3;
    animation: drift 6s ease-in-out infinite;
}

@keyframes drift {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(5px, -10px);
    }

    66% {
        transform: translate(-5px, 5px);
    }
}

.benefit-floating-1 {
    top: 0;
    right: 0;
    animation-delay: 0s;
    color: var(--primary-blue);
}

.benefit-floating-2 {
    bottom: 20%;
    left: -5%;
    animation-delay: 2s;
    color: var(--primary-green);
}

.benefit-floating-3 {
    top: 40%;
    right: -10%;
    animation-delay: 4s;
    color: #f59e0b;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: white;
    border-radius: 24px;
    margin-bottom: 20px;
    border: 1px solid rgba(68, 166, 241, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.benefit-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 30px rgba(68, 166, 241, 0.08);
}

.benefit-icon {
    min-width: 50px;
    height: 50px;
    background: rgba(68, 166, 241, 0.1);
    color: var(--primary-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: var(--primary-blue);
    color: white;
    transform: rotate(10deg);
}

.benefit-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.benefit-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

.highlight-blue {
    color: var(--primary-blue) !important;
    font-weight: 800;
}

.highlight-green {
    color: var(--primary-green) !important;
    font-weight: 800;
}

/* Footer */
#footer {
    background: #a14599;
    color: #fff;
    padding: 80px 0 0;
}

#footer h4,
#footer b {
    color: #fff;
}

.footer-bottom {
    background: #7e307a;
    padding: 20px 0;
    margin-top: 60px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

/* Footer Links Fix */
#footer .list-unstyled a {
    color: #fff !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 2px 0;
}

#footer .list-unstyled a:hover {
    color: white !important;
    transform: translateX(5px);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    display: none;
    background: var(--primary-blue);
    color: white !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    right: 30px;
    bottom: 30px;
    z-index: 996;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(68, 166, 241, 0.4);
    font-size: 24px;
}

.back-to-top:hover {
    background: var(--primary-green);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(134, 193, 82, 0.4);
}

/* Mobile Nav Toggle Premium Styling */
#mobile-nav-toggle {
    z-index: 1050;
    background: #7e307a !important;
    color: white !important;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(68, 166, 241, 0.4);
    display: none;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    outline: none;
}

#mobile-nav-toggle i {
    color: white !important;
    font-size: 26px;
}

#mobile-nav-toggle:hover {
    background: black !important;
    box-shadow: 0 8px 16px rgba(134, 193, 82, 0.4);
    transform: translateY(-2px);
}

.mobile-nav-header {
    padding: 25px 25px;
    background: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.mobile-nav-header img {
    height: 40px;
    transition: transform 0.3s ease;
}

#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 0px;
    bottom: 0;
    z-index: 998;
    background: white !important;
    color: #44a6f1 !important;
    backdrop-filter: blur(10px);
    left: -280px;
    width: 280px;
    transition: 0.4s;
    overflow-y: auto;
}

#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#mobile-nav ul li {
    padding: 10px 10px;
}

#mobile-nav ul li a {
    position: relative;
    border-radius: 12px;
    transition: all 0.25s ease;
    color: #7e307a !important;
}

/* hover */
#mobile-nav ul li a:hover {
    background: #a14599;
    color: white !important;
    transform: translateX(6px);
}

/* active menu item */
#mobile-nav ul li.menu-active>a,
#mobile-nav ul li.menu-item-active>a {
    background: #a14599 !important;
    color: white !important;
    font-weight: 700;
    transform: translateX(8px);
}

/* left highlight bar */
#mobile-nav ul li.menu-active>a::before,
#mobile-nav ul li.menu-item-active>a::before {
    content: "";
    position: absolute;
    border-radius: 4px;
    background: var(--primary-gradient);
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(2, 6, 17, 0.8);
    backdrop-filter: blur(4px);
    display: none;
}

body.mobile-nav-active #mobile-nav {
    left: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive */
@media (max-width: 991px) {
    #mobile-nav-toggle {
        display: flex !important;
    }

    #header {
        height: 100px;
    }

    #header div {
        align-items: start !important;
    }

    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        text-align: center;
        padding-top: 140px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-composition {
        margin-top: 50px;
        height: 300px;
    }

    .hero-main-circle {
        width: 200px;
        height: 200px;
    }

    .hero-main-circle i {
        font-size: 60px;
    }

    .floating-glass-card {
        padding: 10px;
        font-size: 0.8rem;
    }

    .feature-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .features-container {
        padding: 80px 0;
    }

    .benefit-visual-blob {
        width: 300px;
        height: 300px;
    }

    .benefit-floating-3 {
        top: 40%;
        right: -2%;
        animation-delay: 4s;
        color: #f59e0b;
    }
}

/* Contact Form Premium UI */
.contact-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(68, 166, 241, 0.1);
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-input-group {
    position: relative;
    margin-bottom: 25px;
}

.premium-input-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-blue);
    font-size: 20px;
    transition: all 0.3s;
}

.premium-input-group textarea~i {
    top: 25px;
    transform: none;
}

.premium-form-control {
    width: 100%;
    padding: 15px 15px 15px 55px;
    border-radius: 15px;
    border: 2px solid #44a6f1;
    background: #f8fafc;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s;
    outline: none !important;
}

.premium-form-control:focus {
    background: white;
    border-color: var(--primary-blue);
    box-shadow: 0 10px 20px rgba(68, 166, 241, 0.05);
}

.premium-form-control:focus~i {
    color: var(--primary-green);
    transform: translateY(-50%) scale(1.1);
}

.premium-form-control::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.submit-btn-premium {
    width: 100%;
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(68, 166, 241, 0.3);
    cursor: pointer;
}

.submit-btn-premium:hover {
    background: var(--primary-green);
    box-shadow: 0 10px 20px rgba(134, 193, 82, 0.3);
    transform: translateY(-3px);
}

.contact-visual-wrapper {
    position: relative;
}

.contact-visual-wrapper img {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.contact-visual-wrapper:hover img {
    transform: scale(1.02);
}

/* Contact Info Tiles */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-tile {
    background: white;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(68, 166, 241, 0.08);
    transition: all 0.3s ease;
}

.info-tile:hover {
    transform: translateX(10px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 40px rgba(68, 166, 241, 0.1);
}

.info-tile-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(68, 166, 241, 0.1);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s;
}

.info-tile:hover .info-tile-icon {
    background: var(--primary-blue);
    color: white;
    transform: rotate(10deg);
}

.info-tile-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-tile-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}

.contact-social-pills {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-pill {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 20px;
    transition: all 0.3s;
    border: 1px solid #f1f5f9;
}

.social-pill:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.glass-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}