/* Base styles */
@font-face {
    font-family: Inter;
    src: url("../fonts/Inter/Inter-VariableFont_slnt,wght.ttf");
}

:root {
    --primary-color: #F04F32;
    --primary-light: #ff7259;
    --primary-gradient: linear-gradient(to right, #ef4f32, #e38776);
    --primary-dark: #cf3b20;
    --dark-color: #181C32;
    --text-color: #3F4254;
    --light-color: #F5F8FA;
    --bs-btn-active-bg: #F04F32;
    --gray-100: #F5F8FA;
    --gray-200: #EEF3F7;
    --gray-300: #E4E6EF;
    --gray-400: #B5B5C3;
    --gray-500: #A1A5B7;
    --gray-600: #7E8299;
    --gray-700: #5E6278;
    --gray-800: #3F4254;
    --gray-900: #181C32;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Advanced utility classes */
.bg-gradient-primary {
    background: var(--primary-gradient);
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(240, 79, 50, 0.2);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    border-radius: 8px;
    padding: 10px 28px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background-color: var(--primary-dark);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(240, 79, 50, 0.2);
}

.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
    background-color: var(--primary-dark);
    color: white !important;
}

/* Hero section */
.hero {
    background: linear-gradient(rgb(255 250 246 / 85%), rgb(251 111 67 / 85%));
    /*background: linear-gradient(rgb(255 250 246 / 85%), rgb(251 111 67 / 85%)),*/
    /*url('{{ asset('assets/images/landing/hero-bg.jpg') }}') no-repeat center center;*/
    background-size: cover;
    color: white;
    padding: 150px 0 100px;
    position: relative;
}

/* Remove wave divider */
.hero::after {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #ff7259);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Redesigned App Download Buttons */
.app-btn {
    border-radius: 12px;
    padding: 15px 25px;
    display: inline-flex;
    align-items: center;
    margin: 10px;
    transition: all 0.3s;
    border: 2px solid transparent;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.app-btn.apple {
    background-color: #000;
    color: white;
}

.app-btn.android {
    background-color: var(--primary-color);
    color: white;
}

.app-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.app-btn i {
    font-size: 2.2rem;
    margin-right: 15px;
}

/* Enhanced Feature Boxes */
.feature-box {
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.5s;
    background: white;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s;
}

.feature-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(240, 79, 50, 0.1);
}

.feature-box:hover::before {
    opacity: 0.03;
}

.feature-box .feature-icon {
    color: var(--primary-color);
}

.feature-box:hover .feature-icon {
    color: white;
    background: var(--primary-gradient);
    transform: scale(1.1);
}

.feature-box:hover h3 {
    color: var(--primary-color);
}

.feature-icon {
    font-size: 32px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-transparent);
    color: var(--primary-color);
    border-radius: 20px;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Advanced How It Works Section */
.step-box {
    position: relative;
    padding-left: 40px;
    margin-bottom: 50px;
}

.step-box::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 60px;
    height: calc(100% - 30px);
    width: 2px;
    background-color: var(--primary-color);
    opacity: 0.3;
}

.step-box:last-child::before {
    display: none;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: absolute;
    left: -14px;
    top: 0;
    box-shadow: 0 10px 20px rgba(240, 79, 50, 0.3);
}

.step-content {
    padding: 0 0 0 30px;
}

/* Enhanced Forms */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.modal-header {
    border-radius: 20px 20px 0 0;
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 25px 30px;
}

.modal-body {
    padding: 30px;
}

.form-control {
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 25px;
    border: 1px solid var(--gray-300);
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(240, 79, 50, 0.1);
}

/* Enhanced Testimonials */
.testimonial-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s;
    margin-bottom: 30px;
    border: none;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    padding: 30px;
}

.testimonial-content::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    opacity: 0.1;
    color: var(--primary-color);
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: var(--primary-color);
    margin-right: 3px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Enhanced CTA Section */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: var(--primary-gradient);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    top: -150px;
    right: -150px;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    bottom: -200px;
    left: -200px;
}

/* Enhanced Navbar */
.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    background-color: white !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    height: 45px;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 40px;
}

.navbar-nav .nav-link {
    color: var(--gray-700);
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 40px);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Footer styling */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 70px 0 30px;
}

footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 25px;
}

footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    margin-right: 10px;
    transition: all 0.3s;
}

footer .social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

footer ul li {
    margin-bottom: 15px;
}

footer .input-group .form-control {
    border-radius: 8px 0 0 8px;
    margin-bottom: 0;
}

footer .input-group .btn {
    border-radius: 0 8px 8px 0;
}

/* Remove footer wave divider */
footer::before {
    display: none;
}

/* Animation utilities */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Additional animation keyframes */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced media queries */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .navbar-collapse {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }

    .navbar-nav .nav-link::after {
        left: 0;
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .app-btn {
        width: 100%;
        justify-content: center;
        margin: 10px 0;
    }

    .feature-box,
    .testimonial-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

