:root {
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --accent-color: #ff9a8b;
    --dark-color: #2b2d42;
    --light-color: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    --gradient-accent: linear-gradient(135deg, #ff9a8b 0%, #ff6a88 55%, #ff99ac 100%);
    --box-shadow: 0 10px 30px rgba(42, 17, 203, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

section {
    padding: 100px 0;
    position: relative;
}

.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: var(--box-shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(42, 17, 203, 0.25);
}

.btn-outline-light {
    border: 2px solid white;
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 50px;
}

.section-subheading {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.navbar {
    padding: 20px 0;
    transition: var(--transition);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    color: white;
    font-size: 1.8rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.bib1 {
    height: 54px;
}

.navbar.scrolled .navbar-brand {
    color: var(--primary-color);
}

.navbar-toggler {
    border: none;
    color: white;
    font-size: 1.5rem;
}

.navbar.scrolled .navbar-toggler {
    color: var(--primary-color);
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.navbar.scrolled .nav-link {
    color: var(--dark-color);
}

.nav-link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover:after {
    width: 100%;
}

.nav-link:hover {
    color: white;
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary-color);
}

.offcanvas {
    background: var(--gradient-primary);
}

.offcanvas-title {
    color: white;
    font-weight: 600;
}

.offcanvas .nav-link {
    color: white;
    font-size: 1.2rem;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    color: white;
    padding: 150px 0 100px;
    overflow: hidden;
    position: relative;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-text .highlight {
    position: relative;
    z-index: 1;
}

.hero-text .highlight:after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--accent-color);
    z-index: -1;
    opacity: 0.6;
}

.hero-btns {
    margin-top: 40px;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.image-container {
    position: relative;
    padding: 30px;
}

.image-container img {
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 0;
    left: 0;
    transform: translate(-30%, -30%);
}

.card-2 {
    bottom: 0;
    right: 0;
    transform: translate(20%, 20%);
    animation-delay: 1.5s;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.card-text {
    font-weight: 600;
    color: var(--dark-color);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

.hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 150px;
    background: var(--light-color);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.features-section {
    background-color: var(--light-color);
    position: relative;
}

.feature-card {
    background-color: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: 0.2s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: 0.2s;
}

.feature-card.highlighted {
    background: var(--gradient-primary);
    color: white;
    transition: 0.2s;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card.highlighted .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.how-it-works-section {
    background-color: #f0f3ff;
    position: relative;
    overflow: hidden;
}

.how-it-works-section:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--gradient-accent);
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(50%, -50%);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--gradient-primary);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(42, 17, 203, 0.2);
}

.timeline-content {
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    margin-left: 30px;
    flex-grow: 1;
    position: relative;
}

.timeline-content:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%) rotate(45deg);
    width: 20px;
    height: 20px;
    background-color: white;
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-content p {
    margin-bottom: 0;
}

.testimonials-section {
    background-color: white;
    position: relative;
}

.testimonial-card {
    background-color: var(--light-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card.highlighted {
    background: var(--gradient-primary);
    color: white;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-top: 30px;
}

.testimonial-content:before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-card.highlighted .testimonial-content:before {
    color: white;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    margin-bottom: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

.contact-section {
    background-color: #f0f3ff;
    position: relative;
    overflow: hidden;
}

.contact-section:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: var(--gradient-accent);
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(-50%, 50%);
}

.contact-form-container {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 2;
}

.form-control, .form-select {
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    background-color: #f5f7ff;
    margin-bottom: 20px;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.2);
    background-color: white;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.contact-info {
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-info-item p {
    margin-bottom: 0;
}

.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 20px;
}

.footer-heading {
    color: white;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer p {
    opacity: 0.7;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 60px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: white;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(43, 45, 66, 0.95);
    color: white;
    padding: 15px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-content p {
    margin-bottom: 0;
    margin-right: 20px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.privacy-section {
    padding: 150px 0 100px;
}

.privacy-header {
    margin-bottom: 60px;
}

.privacy-header h1 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.privacy-block {
    margin-bottom: 40px;
}

.privacy-block h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.privacy-block h3 {
    margin: 25px 0 15px;
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.privacy-block p, .privacy-block li {
    line-height: 1.8;
}

.privacy-block ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-block li {
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-text {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-content {
        margin-left: 20px;
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .contact-form-container, .contact-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    section {
        padding: 70px 0;
    }
    
    .hero-section {
        padding: 120px 0 70px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .feature-card {
        margin-bottom: 30px;
    }
    
    .timeline-content:before {
        display: none;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 15px;
    }
} 