:root {
    --primary-color: #F59E0B;
    /* Honey Gold */
    --primary-hover: #D97706;
    --dark-bg: #0f172a;
    /* Deep Blue/Grey */
    --darker-bg: #020617;
    /* Darker shade for contrast */
    --card-bg: rgba(30, 41, 59, 0.4);
    /* More transparent for glassmorphism */
    --text-main: #f3f4f6;
    /* Off-white */
    --text-secondary: #9ca3af;
    /* Light Grey */
    --glass-border: rgba(255, 255, 255, 0.08);
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--dark-bg);
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(79, 70, 229, 0.08) 0%, transparent 25%);
}

/* Scrollbar Styling for Main Page */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Navbar */
.navbar {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
}

.nav-link {
    color: var(--text-main);
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Burger Menu Icon - White Color */
.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%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.15);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #b45309);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    padding: 12px 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.btn-glow {
    animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(245, 158, 11, 0.8), 0 0 40px rgba(245, 158, 11, 0.4);
    }
}

.btn-outline-light {
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 12px 30px;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: var(--dark-bg);
    transform: translateY(-3px);
    border-color: #fff;
}

/* Hero Section */
.hero-section {
    padding-top: 180px;
    padding-bottom: 120px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-visual {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    animation: rotateContainer 30s infinite linear;
}

.glowing-qr {
    font-size: 180px;
    background: linear-gradient(135deg, #fff, var(--primary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 40px rgba(245, 158, 11, 0.5));
    animation: counterRotate 30s infinite linear, pulse 4s infinite ease-in-out;
    z-index: 3;
}

.orbit-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    animation: counterRotate 30s infinite linear;
}

.icon-1 {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: -40px;
    color: #FCD34D;
}

.icon-2 {
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    margin-right: -40px;
    color: #F87171;
}

.icon-3 {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    margin-bottom: -40px;
    color: #60A5FA;
}

.icon-4 {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    margin-left: -40px;
    color: #34D399;
}

@keyframes rotateContainer {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes counterRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        filter: drop-shadow(0 0 40px rgba(245, 158, 11, 0.5));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 60px rgba(245, 158, 11, 0.8));
        transform: scale(1.05);
    }
}

/* Features Section */
.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::after {
    opacity: 1;
}

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.feature-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

/* Contact Section */
.contact-wrapper {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.contact-info-side {
    background: linear-gradient(135deg, var(--primary-color), #b45309);
    padding: 4rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-info-side::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: rotateContainer 20s infinite linear;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-form-side {
    padding: 4rem;
}

.form-floating>.form-control {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--glass-border);
    color: #fff;
}

.form-floating>.form-control:focus {
    background: rgba(15, 23, 42, 0.8);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.form-floating>label {
    color: #9ca3af;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
    color: var(--primary-color);
}

/* FAQ Section */
.faq-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: start;
}

@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    background: #050b14;
}

/* Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.4;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: #7c3aed;
    top: -10%;
    right: -10%;
    animation: float 10s infinite ease-in-out;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #F59E0B;
    bottom: 10%;
    left: -10%;
    animation: float 12s infinite ease-in-out reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content-custom {
    background: #1e293b;
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.success-modal.active .modal-content-custom {
    transform: scale(1);
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #b45309);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
    animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s backwards;
}

@keyframes popIn {
    from {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }

    to {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .hero-content .d-flex.gap-3 {
        justify-content: center;
    }

    .hero-content .mt-5.d-flex {
        justify-content: center;
    }

    .hero-visual {
        width: 350px;
        height: 350px;
    }

    .glowing-qr {
        font-size: 140px;
    }

    .contact-info-side,
    .contact-form-side {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.4rem;
    }

    .hero-section {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .hero-visual {
        width: 280px;
        height: 280px;
    }

    .glowing-qr {
        font-size: 100px;
    }

    .orbit-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .icon-1 {
        margin-top: -25px;
    }

    .icon-2 {
        margin-right: -25px;
    }

    .icon-3 {
        margin-bottom: -25px;
    }

    .icon-4 {
        margin-left: -25px;
    }

    .contact-wrapper {
        border-radius: 20px;
    }

    .contact-info-side,
    .contact-form-side {
        padding: 2rem;
    }

    .modal-content-custom {
        padding: 2rem;
        width: 85%;
    }
}

/* Logo Styles */
.navbar-logo {
    height: 65px;
    width: auto;
}

.footer-logo {
    height: 95px;
    width: auto;
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 55px;
    }

    .footer-logo {
        height: 65px;
    }
}