:root {
    --primary: #7209B7;
    --secondary: #4361EE;
    --accent: #F72585;
    --light: #F8F9FA;
    --dark: #212529;
    --gradient: linear-gradient(135deg, #7209B7 0%, #4361EE 100%);
    --text-gradient: linear-gradient(135deg, #F72585 0%, #7209B7 100%);
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background-color: #FAFBFF;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent);
}

section {
    padding-top: 7rem;
    padding-bottom: 5rem;
}

.btn {
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient);
    border: none;
    box-shadow: 0 4px 15px rgba(114, 9, 183, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(114, 9, 183, 0.4);
    background: linear-gradient(135deg, #6008A0 0%, #3251D8 100%);
}

.btn-outline-secondary {
    color: var(--primary);
    border: 2px solid var(--primary);
    background: transparent;
}

.btn-outline-secondary:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary);
}

header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand span {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-toggler {
    color: var(--primary);
    font-size: 1.5rem;
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gradient);
    bottom: 0;
    left: 1rem;
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: calc(100% - 2rem);
}

.offcanvas {
    background-color: #FAFBFF;
}

.offcanvas-title {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

#hero {
    background: linear-gradient(135deg, rgba(250, 251, 255, 1) 0%, rgba(240, 242, 255, 1) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(114, 9, 183, 0.1) 0%, rgba(114, 9, 183, 0) 70%);
    top: -200px;
    right: -200px;
    z-index: 0;
}

#hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.1) 0%, rgba(67, 97, 238, 0) 70%);
    bottom: -100px;
    left: -100px;
    z-index: 0;
}

.hero-image {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-10deg);
    transition: all 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

#features {
    background-color: white;
    position: relative;
}

.feature-card {
    background-color: #FAFBFF;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(114, 9, 183, 0.2);
    color: white;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover h3 {
    color: white;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: white;
    color: var(--primary);
}

.feature-card h3 {
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

#how-it-works {
    background-color: #FAFBFF;
}

.steps {
    padding-left: 2rem;
}

.step {
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

#testimonials {
    background-color: white;
}

.testimonial-card {
    background-color: #FAFBFF;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(114, 9, 183, 0.2);
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author h5 {
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: #6c757d;
    margin-bottom: 0;
}

#contact-form {
    background-color: #FAFBFF;
    position: relative;
    overflow: hidden;
}

#contact-form::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 37, 133, 0.1) 0%, rgba(247, 37, 133, 0) 70%);
    bottom: -200px;
    right: -200px;
    z-index: 0;
}

.form-container {
    background-color: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.form-control, .form-select {
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(114, 9, 183, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

#contact-info {
    background-color: white;
}

.contact-details {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

footer {
    background: var(--gradient);
    color: white;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

footer a:hover {
    color: white;
}

footer h5 {
    color: white;
    margin-bottom: 1.5rem;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.2);
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(33, 37, 41, 0.95);
    color: white;
    padding: 1rem 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    margin-bottom: 0;
}

.cookie-content a {
    color: #F72585;
    text-decoration: underline;
}

.privacy-policy {
    padding-top: 10rem;
}

.privacy-header {
    margin-bottom: 3rem;
}

.policy-section h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.policy-section h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
    section {
        padding-top: 5rem;
        padding-bottom: 3rem;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .steps {
        padding-left: 0;
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    #hero {
        min-height: auto;
        padding-top: 7rem;
        padding-bottom: 3rem;
    }
    
    .hero-image {
        margin-bottom: 2rem;
        transform: none;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-details {
        margin-bottom: 2rem;
    }
} 