:root {
    --primary: #dda44e;
    --primary-dark: #bf902c;
    --secondary: #9a7718;
    --accent: #ff9e00;
    --accent-light: #ffca3a;
    --dark: #462800;
    --light: #f8f9fa;
    --gray: #6c757d;
    --success: #38b000;
    --info: #3a86ff;
    --warning: #ffbe0b;
    --danger: #ff006e;
    --body-bg: #f5f3fe;
    --text-color: #2b2d42;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-color);
    background-color: var(--body-bg);
    overflow-x: hidden;
}

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(--primary-dark);
}

.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline-light {
    color: var(--light);
    border-color: var(--light);
}

.btn-outline-light:hover {
    background-color: var(--light);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.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(157, 78, 221, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 20px !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    bottom: 5px;
    left: 20px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: calc(100% - 40px);
}

.nav-link:hover {
    color: var(--primary);
}

.offcanvas {
    background-color: var(--dark);
}

.offcanvas .nav-link {
    color: var(--light);
}

.offcanvas-title {
    color: var(--light);
}

.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--light);
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-15deg);
    transition: all 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-shape {
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    height: 200px;
    background-color: var(--body-bg);
    transform: skewY(-3deg);
    z-index: 1;
}

.features-section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
    background-color: #f0eaff;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 2px;
}

.feature-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 5px solid transparent;
    border-image: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-image-slice: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: 20px;
    margin-bottom: 25px;
    transform: rotate(10deg);
    box-shadow: 0 10px 20px rgba(157, 78, 221, 0.2);
    position: relative;
    z-index: 1;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-icon i {
    font-size: 2rem;
    color: #fff;
    transform: rotate(-10deg);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: rotate(-10deg) scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 15px;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.feature-card:hover h3::after {
    width: 80px;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

.how-it-works-section {
    padding: 120px 0;
    background-color: #fff;
    position: relative;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 200px;
    background-color: #fff;
    transform: skewY(3deg);
    z-index: 1;
}

.how-it-works-section .container {
    position: relative;
    z-index: 2;
}

.step-card {
    padding: 40px 30px;
    height: 100%;
    position: relative;
    z-index: 1;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 25px;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.step-card img {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonials-section {
    padding: 120px 0;
    background-color: var(--body-bg);
    position: relative;
    background: linear-gradient(135deg, #f5f3fe 0%, #e9e4ff 100%);
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, #f5f3fe 0%, #e9e4ff 100%);
    transform: skewY(-3deg);
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-content {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 2px dashed rgba(157, 78, 221, 0.1);
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-color);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: -10px;
    font-size: 8rem;
    font-family: serif;
    color: rgba(157, 78, 221, 0.07);
    line-height: 1;
    z-index: 0;
}

.testimonial-avatar {
    position: relative;
}

.testimonial-avatar img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar img {
    transform: scale(1.1);
}

.testimonial-author h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 0;
    font-weight: 500;
}

.faq-section {
    padding: 120px 0;
    background-color: #fff;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 200px;
    background-color: #fff;
    transform: skewY(3deg);
    z-index: 1;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 20px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
    background-color: #fff;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: rgba(157, 78, 221, 0.05);
    box-shadow: none;
}

.hidz {
    display: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(157, 78, 221, 0.1);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%239d4edd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px 30px 30px;
    font-size: 1rem;
    color: var(--gray);
}

.contact-section {
    padding: 120px 0;
    background-color: var(--body-bg);
    position: relative;
    width: 100%;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 200px;
    background-color: var(--body-bg);
    transform: skewY(-3deg);
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-form-wrapper {
    background-color: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.form-label {
    font-weight: 500;
    margin-bottom: 10px;
}

.form-control, .form-select {
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1rem;
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 3px rgba(157, 78, 221, 0.1);
    border-color: var(--primary);
}

.contact-info-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info {
    background-color: var(--primary);
    border-radius: 20px;
    padding: 50px;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    margin-bottom: 30px;
}

.contact-info i {
    font-size: 1.2rem;
    color: var(--accent-light);
}

.map-wrapper {
    margin-top: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
}

.map-wrapper iframe {
    border: none;
    width: 100%;
    height: 100%;
}

.footer-section {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px;
}

.footer-section h4, .footer-section h5 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-links {
    margin-bottom: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 5px;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

hr {
    border-color: rgba(255, 255, 255, 0.1);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark);
    color: #fff;
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice a {
    color: var(--accent-light);
}

.cookie-notice a:hover {
    color: var(--accent);
}

.privacy-section {
    padding: 180px 0 100px;
}

.privacy-header {
    margin-bottom: 60px;
}

.privacy-header h1 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.privacy-content {
    background-color: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.privacy-section h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.privacy-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.privacy-section p, .privacy-section ul {
    color: var(--gray);
    margin-bottom: 1rem;
}

.privacy-section ul {
    padding-left: 1.5rem;
}

.privacy-section ul li {
    margin-bottom: 0.5rem;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 150px 0 100px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        margin-top: 50px;
        transform: none;
    }
    
    .contact-info-wrapper {
        margin-top: 50px;
    }
    
    .contact-form-wrapper, .contact-info {
        padding: 30px;
    }
    
    .privacy-content {
        padding: 30px;
    }

    .hidz {
        display: flex;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 130px 0 80px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-section, .how-it-works-section, .testimonials-section, .faq-section, .contact-section {
        padding: 80px 0;
    }
    
    .step-card {
        margin-bottom: 30px;
    }
    
    .footer-section {
        padding: 60px 0 30px;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .feature-card, .testimonial-card {
        padding: 25px;
    }
    
    .contact-form-wrapper, .contact-info, .privacy-content {
        padding: 25px;
    }
} 