/* Global Styles */
:root {
    --primary-color: #F59953;
    --secondary-color: #F57447;
    --accent-color: #F5C447;
    --text-color: #2D3748;
    --light-bg: #FFF9F2;
    --gradient-start: #F5AF47;
    --gradient-end: #F5D947;
    --hover-color: #F5D099;
    --border-radius: 16px;
    --primary: #F59953;
    --primary-dark: #F57447;
    --secondary: #F5C447;
    --accent: #F5AF47;
    --accent-light: #F5D947;
    --soft-peach: #F5D099;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #FFFFFF;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(245, 153, 83, 0.1);
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    border-radius: var(--border-radius);
    color: #2D3748;
}

.nav-link:not(.btn):hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    background-color: #FFF9F2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: linear-gradient(
        135deg,
        rgba(245, 153, 83, 0.3) 0%,
        rgba(245, 217, 71, 0.4) 50%,
        rgba(245, 208, 153, 0.3) 100%
    );*/
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: radial-gradient(
        circle at top right,
        rgba(245, 208, 153, 0.3),
        transparent 70%
    );*/
    pointer-events: none;
}

.hero-image-container {
    position: relative;
    width: 100%;
    padding: 1rem;
    border-radius: 20px;
    background-color: #f88e55;
    margin: 2rem auto;
    overflow: hidden;
}

.hero-image-container iframe {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-image-container::after {
    display: none;
}

.hero-section h1 {
    color: var(--text-color);
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.35rem;
    color: #4A5568;
    margin-bottom: 2rem;
}

.badge.bg-white {
    background-color: #FFFFFF !important;
    color: var(--primary-color) !important;
    box-shadow: 0 2px 10px rgba(245, 153, 83, 0.1);
}

.cta-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 153, 83, 0.3);
    background: var(--gradient-primary);
}

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

.btn-outline-primary:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 153, 83, 0.3);
}

/* Section Spacing */
section {
    padding: 60px 0;  
    margin-bottom: 30px;  
}

section:last-child {
    margin-bottom: 0;
}

/* How It Works Section */
#how-it-works {
    padding: 60px 0;  
    margin-bottom: 30px;  
    background-color: var(--light-bg);
    position: relative;
    background: url('../assets/images/skyline.jpeg') center/cover no-repeat;
}

#how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8); 
    z-index: 1;
}

#how-it-works .container {
    position: relative;
    z-index: 2;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: bold;
    margin: 0 auto;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(245, 153, 83, 0.2);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0.3;
    z-index: -1;
}

.feature-card {
    background: #FFFFFF;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 153, 83, 0.1);
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(245, 153, 83, 0.1);
    border-color: var(--primary-color);
}

.feature-card .feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.feature-card h3 {
    color: var(--text-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #4A5568;
    margin-bottom: 0;
}

.card {
    border: none;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    background: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background: white;
    border: none;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(245, 153, 83, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(245, 153, 83, 0.15);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #fff;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.2rem;
}

.feature-list h4 {
    color: var(--text-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-list p {
    color: #4A5568;
    margin-bottom: 0;
}

.features-image-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    background: #F57447;
    padding: 20px;
}

.features-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.features-image-container img:hover {
    transform: scale(1.05);
}

.features-shape-1,
.features-shape-2 {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.features-shape-1 {
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
    background: linear-gradient(135deg, rgba(245, 153, 83, 0.2), rgba(245, 196, 71, 0.1));
    animation: rotate 20s linear infinite;
}

.features-shape-2 {
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: linear-gradient(135deg, rgba(245, 196, 71, 0.1), rgba(245, 153, 83, 0.2));
    animation: rotate 25s linear infinite reverse;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.feature-icon-small {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    width: 40px;
    height: 40px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
}

.feature-list p {
    color: #4A5568;
    font-size: 1.1rem;
}

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

@media (max-width: 991.98px) {
    .features-image-container {
        width: 300px;
        height: 300px;
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .features-image-container {
        width: 250px;
        height: 250px;
    }
}

/* Footer */
footer {
    position: relative;
    background-color: #fff;
    padding: 3rem 0;
    margin-top: auto;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--accent-color), transparent);
}

footer a {
    color: #A0AEC0;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

footer a:hover {
    color: var(--hover-color);
    transform: translateX(5px);
    color: var(--primary);
}

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

.social-links a {
    color: #A0AEC0;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-links a:hover {
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: translateY(-3px);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(245, 153, 83, 0.3);
    color: white;
}

/* Form Elements */
.form-control {
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid rgba(245, 153, 83, 0.2);
    padding: 0.75rem 1rem;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 153, 83, 0.2);
    border-color: var(--primary);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* .hero-section img {
    animation: float 6s ease-in-out infinite;
} */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: var(--border-radius);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        text-align: center;
        padding-top: 4rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .feature-list {
        margin-bottom: 2rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Badges */
.badge {
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.bg-accent {
    background: var(--gradient-accent) !important;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #718096;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Authentication Styles */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--primary-color-light) 0%, var(--primary-color) 100%);
}

.auth-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.auth-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
}

.auth-logo:hover {
    color: var(--primary-color-dark);
}

.auth-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: var(--text-color-light);
    margin-bottom: 0;
}

.auth-form .input-group-text {
    background-color: transparent;
    border-right: none;
    color: var(--text-color-light);
}

.auth-form .form-control {
    border-left: none;
}

.auth-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.auth-form .input-group:focus-within .input-group-text {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.auth-link {
    color: var(--primary-color);
    text-decoration: none;
}

.auth-link:hover {
    color: var(--primary-color-dark);
    text-decoration: underline;
}

.auth-divider {
    text-align: center;
    position: relative;
    margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: calc(50% - 2rem);
    height: 1px;
    background-color: var(--border-color);
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-divider span {
    background-color: white;
    padding: 0 1rem;
    color: var(--text-color-light);
    font-size: 0.875rem;
}

.social-auth {
    margin-top: 1rem;
}

.social-auth .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.social-auth img {
    height: 1.25rem;
    width: auto;
}

.account-type-selector {
    display: flex;
    gap: 1rem;
}

.account-type-selector .btn {
    flex: 1;
}

.password-requirements {
    margin-top: 0.5rem;
}

.password-requirements ul {
    padding-left: 1.25rem;
    margin-top: 0.25rem;
}

/* Dashboard Styles */
.dashboard-container {
    padding-top: 70px;
    min-height: 100vh;
    background-color: var(--light-bg);
}

.dashboard-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 250px;
    background-color: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 2rem 1rem;
    z-index: 100;
}

.dashboard-sidebar .nav-link {
    color: var(--text-color);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.dashboard-sidebar .nav-link:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.dashboard-sidebar .nav-link.active {
    background-color: var(--primary-color);
    color: white;
}

.dashboard-content {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.stats-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stats-icon {
    width: 3rem;
    height: 3rem;
    background: var(--primary-color-light);
    color: var(--primary-color);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.stats-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.stats-info p {
    font-size: 0.875rem;
    color: var(--text-color-light);
    margin-bottom: 0;
}

.user-profile .avatar {
    width: 5rem;
    height: 5rem;
    background: var(--primary-color-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}