:root {
    --primary-purple: #8E44AD;
    --accent-gold: #D4AF37;
    --dark-gray: #34495E;
    --light-gray: #F9F9F9;
    --bright-gold: #D4AF37;
    --warning-color: #FFC107;
}

/* Import purchase styles */
@import url('purchase.css');

/* Import blog styles */
@import url('blog.css');

.hero-section {
    background: linear-gradient(rgba(142, 68, 173, 0.9), rgba(212, 175, 55, 0.8)), url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
}

.highlight-text {
    color: var(--bright-gold);
    font-weight: bold;
}

.countdown-container {
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.9), rgba(212, 175, 55, 0.8));
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 2rem auto;
    position: relative;
    overflow: hidden;
    max-width: 600px;
}

.countdown-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0) 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
    animation: moveBackground 20s linear infinite;
    z-index: 0;
}

.countdown-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.countdown-box {
    display: flex;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.countdown-unit {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 1rem;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.countdown-unit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-purple);
    z-index: 1;
}

.countdown-unit:nth-child(2)::before {
    background: var(--accent-gold);
}

.countdown-unit:nth-child(3)::before {
    background: var(--bright-gold);
}

.countdown-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
}

.countdown-value::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 25%;
    width: 50%;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.countdown-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-tagline {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-style: italic;
}

/* Animation for the countdown values */
@keyframes pulse-value {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

#countdown-seconds {
    animation: pulse-value 1s infinite;
    color: var(--accent-gold);
}

/* Responsive adjustments for countdown */
@media (max-width: 768px) {
    .countdown-box {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .countdown-unit {
        min-width: 80px;
        padding: 0.75rem;
    }
    
    .countdown-value {
        font-size: 2.5rem;
    }
}

/* Build page and CTA styles */
.build-btn {
    animation: pulse 2s infinite;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
    transition: all 0.3s ease;
}

.build-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.7);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 193, 7, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

.build-cta-banner {
    background: linear-gradient(to right, var(--primary-purple), var(--accent-gold));
    border-radius: 10px;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.build-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
    animation: moveBackground 20s linear infinite;
    z-index: 0;
}

.build-cta-banner .row {
    position: relative;
    z-index: 1;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Form styling */
.form-control:focus, .form-select:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.25rem rgba(142, 68, 173, 0.25);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-check-input:checked {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
}

/* Navbar styling */
.navbar {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #34495E 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1100;
    transition: all 0.3s ease;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0;
}

/* Enhanced brand styling */
.brand-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    background: transparent;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    transform: rotate(30deg);
    transition: all 0.8s ease;
}

.logo-icon:hover::before {
    transform: rotate(30deg) translate(100%, 100%);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--bright-gold);
    opacity: 0.9;
    margin-top: 2px;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-purple), var(--accent-gold));
    transition: all 0.3s ease;
    opacity: 0;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    left: 1rem;
    right: 1rem;
    opacity: 1;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: white;
}

/* Responsive adjustments for the navbar */
@media (max-width: 768px) {
    .brand-container {
        gap: 10px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .brand-name {
        font-size: 1.3rem;
    }
    
    .brand-tagline {
        font-size: 0.8rem;
    }
}

/* Footer styles */
.footer {
    background-color: var(--dark-gray);
    color: white;
}

.footer-links {
    margin-top: 0.5rem;
}

.footer-links a {
    color: rgba(255, 193, 7, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.85rem;
    border-bottom: 1px dotted rgba(255, 193, 7, 0.4);
    padding-bottom: 2px;
}

.footer-links a:hover {
    color: var(--accent-gold);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-gold);
}

/* Disclaimer page styles */
.disclaimer-section h2 {
    color: var(--primary-purple);
    margin-top: 2rem;
}

.disclaimer-section ul {
    padding-left: 1.5rem;
}

.disclaimer-section li {
    margin-bottom: 0.5rem;
}

/* Card styles for disclaimer */
.card.shadow-lg {
    transition: transform 0.3s ease;
    border: none;
}

.card.shadow-lg:hover {
    transform: translateY(-5px);
}

.card-body h2 {
    color: var(--primary-purple);
    font-weight: 600;
}

/* Disclaimer page specific styling */
.disclaimer-page .section-title {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.disclaimer-page .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-purple), var(--accent-gold));
    border-radius: 2px;
}

.disclaimer-page .card.shadow-lg {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-purple);
}

.disclaimer-page .card.shadow-lg:nth-child(odd) {
    background-color: #f0f4f8;
    border-left-color: var(--primary-purple);
}

.disclaimer-page .card.shadow-lg:nth-child(even) {
    background-color: #f1f8f5;
    border-left-color: var(--accent-gold);
}

.disclaimer-page .card-body {
    position: relative;
    overflow: hidden;
}

.disclaimer-page .card-body h2 {
    display: inline-block;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(142, 68, 173, 0.3);
}

.disclaimer-page .card-body::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, rgba(142, 68, 173, 0.05), transparent 70%);
    z-index: 0;
}

.disclaimer-page .card-body > * {
    position: relative;
    z-index: 1;
}

/* Nested lists in disclaimer */
.card-body ul ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.card-body ul li ul li {
    margin-bottom: 0.25rem;
}

.card-body strong {
    color: var(--dark-gray);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .build-btn {
        margin-left: 0 !important;
    }
    
    .build-cta-banner .row {
        flex-direction: column;
    }
    
    .build-cta-banner .col-md-4 {
        margin-top: 1rem;
    }
}

/* Feature cards styling for "How We Make It Happen" section */
.feature-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Gradient backgrounds for each step */
.row.g-4 > .col-md-3:nth-child(1) .feature-card .card-body {
    background: linear-gradient(135deg, #8E44AD 0%, #7A3A93 100%);
    color: white;
}

.row.g-4 > .col-md-3:nth-child(2) .feature-card .card-body {
    background: linear-gradient(135deg, #D4AF37 0%, #C19307 100%);
    color: white;
}

.row.g-4 > .col-md-3:nth-child(3) .feature-card .card-body {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: white;
}

.row.g-4 > .col-md-3:nth-child(4) .feature-card .card-body {
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    color: white;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    text-align: center;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card .card-title {
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.feature-card .card-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
}

.feature-card .card-text {
    font-size: 1rem;
    opacity: 0.9;
}

/* Styling for "What You Get in One Day" section */
.mt-5.pt-5 .feature-card {
    border-left: 4px solid var(--primary-purple);
    background: linear-gradient(to right, rgba(142, 68, 173, 0.05), rgba(255, 255, 255, 0.8));
    transition: all 0.3s ease;
}

.mt-5.pt-5 .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-left-width: 8px;
}

.mt-5.pt-5 .feature-card:nth-child(1) {
    border-left-color: var(--primary-purple);
    background: linear-gradient(to right, rgba(142, 68, 173, 0.05), rgba(255, 255, 255, 0.8));
}

.mt-5.pt-5 .feature-card:nth-child(2) {
    border-left-color: var(--accent-gold);
    background: linear-gradient(to right, rgba(212, 175, 55, 0.05), rgba(255, 255, 255, 0.8));
}

.mt-5.pt-5 .feature-card:nth-child(3) {
    border-left-color: var(--bright-gold);
    background: linear-gradient(to right, rgba(212, 175, 55, 0.05), rgba(255, 255, 255, 0.8));
}

.mt-5.pt-5 .feature-card h3 {
    color: var(--dark-gray);
    font-weight: 600;
}

.mt-5.pt-5 .feature-card h3 i {
    color: var(--primary-purple);
}

.mt-5.pt-5 .feature-card:nth-child(2) h3 i {
    color: var(--accent-gold);
}

.mt-5.pt-5 .feature-card:nth-child(3) h3 i {
    color: var(--bright-gold);
}

/* Build page styling */
.build-page {
    position: relative;
    background-color: #f8f9fa;
}

.build-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20,50 L80,50" stroke="%238E44AD" stroke-width="1" stroke-dasharray="5,5"/><path d="M50,20 L50,80" stroke="%23D4AF37" stroke-width="1" stroke-dasharray="5,5"/><circle cx="50" cy="50" r="3" fill="%23D4AF37"/></svg>');
    background-size: 100px 100px;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.build-page .section-title {
    position: relative;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    z-index: 1;
}

.build-page .section-title::before {
    content: '🛠️';
    margin-right: 10px;
}

.build-page .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-purple), var(--accent-gold));
    border-radius: 2px;
}

.build-page .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 1;
    position: relative;
}

/* Add subtle background color to the form panel */
.build-page .col-lg-8 .card {
    background-color: #f0f8ff; /* Light blue background */
}

.build-page .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(to right, var(--primary-purple), var(--accent-gold));
}

.build-page .card-body {
    padding: 2rem;
    position: relative;
}

.build-page .card-title {
    color: var(--primary-purple);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.build-page .form-label {
    font-weight: 600;
    color: var(--dark-gray);
    position: relative;
    padding-left: 20px;
}

.build-page .form-label::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
    font-size: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
}

.build-page .form-control,
.build-page .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.build-page .form-control:focus,
.build-page .form-select:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.25rem rgba(0, 127, 255, 0.15);
    transform: translateY(-2px);
}

.build-page .form-check {
    margin-bottom: 0.5rem;
    padding-left: 2rem;
}

.build-page .form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    margin-left: -2rem;
    border: 2px solid #e9ecef;
}

.build-page .form-check-input:checked {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
}

.build-page .form-check-label {
    font-weight: 500;
}

.build-page .mb-4 {
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.build-page .mb-4:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(142, 68, 173, 0.1), rgba(212, 175, 55, 0.1), rgba(142, 68, 173, 0.1));
}

.build-page #submitBuildForm {
    position: relative;
    overflow: hidden;
    background-color: var(--accent-gold);
    border: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
    animation: submitPulse 2s infinite;
}

.build-page #submitBuildForm:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(142, 68, 173, 0.4);
    background-color: #C19307; /* Darker gold on hover */
}

.build-page #submitBuildForm::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    transform: rotate(30deg);
    transition: all 0.8s ease;
}

.build-page #submitBuildForm:hover::after {
    transform: rotate(30deg) translate(100%, 100%);
}

/* Animated submit button */
@keyframes submitPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Progress indicators for form sections */
.build-page .form-section-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.build-page .form-section-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e9ecef;
    z-index: 0;
}

.build-page .form-section-step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark-gray);
    position: relative;
    z-index: 1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.build-page .form-section-step.active {
    background: linear-gradient(145deg, var(--primary-purple), #0056b3);
    border-color: var(--primary-purple);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 127, 255, 0.3);
}

.build-page .form-section-step.completed {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: white;
}

/* Interactive form elements */
.build-page .focused .form-label {
    color: var(--primary-purple);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.build-page .form-check.checked {
    background-color: rgba(0, 127, 255, 0.05);
    border-radius: 5px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.build-page .form-check.checked .form-check-label {
    color: var(--primary-purple);
    font-weight: 600;
}

/* Animated background for the build page */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.build-page::after {
    content: '';
    position: fixed;
    top: 56px; /* Position below navbar */
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-gold), var(--bright-gold), var(--primary-purple));
    background-size: 300% 300%;
    animation: gradientAnimation 5s ease infinite;
    z-index: 1000;
}

/* Tool icons for form sections */
.build-page h3.h5::before {
    font-family: "Font Awesome 5 Free";
    margin-right: 10px;
    color: var(--primary-purple);
    font-weight: 900;
}

.build-page h3.h5:nth-of-type(1)::before {
    content: "\f007"; /* user icon */
}

.build-page h3.h5:nth-of-type(2)::before {
    content: "\f0ac"; /* globe icon */
}

.build-page h3.h5:nth-of-type(3)::before {
    content: "\f085"; /* cogs icon */
}

.build-page h3.h5:nth-of-type(4)::before {
    content: "\f1de"; /* sliders icon */
}

.build-page h3.h5:nth-of-type(5)::before {
    content: "\f073"; /* calendar icon */
}

/* Timer styling */
.timer-container {
    background: linear-gradient(to right, rgba(0, 127, 255, 0.1), rgba(255, 87, 34, 0.1));
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.timer-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.timer {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
}

/* Form section styling */
.form-section-step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark-gray);
    position: relative;
    z-index: 1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.form-section-step.active {
    background: linear-gradient(145deg, var(--primary-purple), #0056b3);
    border-color: var(--primary-purple);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 127, 255, 0.3);
}

/* Range slider styling */
.range-slider {
    position: relative;
    padding: 10px 0;
}

.range-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-weight: 600;
    color: var(--dark-gray);
}

.price-indicator {
    background-color: var(--accent-gold);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.form-range::-webkit-slider-thumb {
    background: var(--primary-purple);
}

.form-range::-moz-range-thumb {
    background: var(--primary-purple);
}

.form-range::-ms-thumb {
    background: var(--primary-purple);
}

/* Price guarantee styling */
.price-guarantee {
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.price-guarantee i {
    color: var(--primary-purple);
    margin-right: 5px;
}

/* Print styles for calculator */
@media print {
    .navbar, .footer, .calculator-faq, .cta-buttons {
        display: none !important;
    }
    
    .calculator-page {
        padding: 0 !important;
    }
    
    .calculator-card {
        box-shadow: none !important;
        border: none !important;
    }
    
    .calculator-options {
        display: none !important;
    }
    
    .calculator-results {
        padding: 0 !important;
        width: 100% !important;
    }
    
    .results-card {
        padding: 0 !important;
        box-shadow: none !important;
    }
    
    .timer-container {
        display: none !important;
    }
    
    body {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

/* Ensure main content has proper spacing from navbar */
main {
    padding-top: 80px; /* Height of navbar plus some extra space */
    min-height: calc(100vh - 200px); /* Full height minus footer and navbar */
    position: relative;
    z-index: 1;
}

/* Adjust container padding on all pages */
.container {
    position: relative;
    z-index: 1;
}

/* Chatbot styling */
.chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.chatbot-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-gold));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.chatbot-button::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background-color: #4CAF50;
    border: 2px solid white;
    border-radius: 50%;
}

.chatbot-button i {
    font-size: 24px;
}

.chatbot-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.chatbot-button.hidden {
    transform: scale(0);
    opacity: 0;
}

.chatbot-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 450px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0);
    transform-origin: bottom right;
    opacity: 0;
    transition: all 0.3s ease;
}

.chatbot-container.active {
    transform: scale(1);
    opacity: 1;
}

.chatbot-header {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-gold));
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    padding: 0;
}

.chatbot-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chatbot-message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 18px;
    line-height: 1.4;
    font-size: 14px;
    position: relative;
}

.chatbot-message p {
    margin: 0;
}

.user-message {
    align-self: flex-end;
    background-color: var(--primary-purple);
    color: white;
    border-bottom-right-radius: 4px;
    border-right: 3px solid var(--accent-gold);
}

.bot-message {
    align-self: flex-start;
    background-color: #f1f1f1;
    color: var(--dark-gray);
    border-bottom-left-radius: 4px;
    border-left: 3px solid var(--primary-purple);
}

.chatbot-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #eee;
    background-color: #f9f9f9;
}

.chatbot-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    font-size: 14px;
}

.chatbot-input input:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 2px rgba(142, 68, 173, 0.1);
}

.chatbot-send {
    background-color: var(--primary-purple);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.chatbot-send:hover {
    background-color: #7D3C98;
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
}

.typing-indicator span {
    height: 8px;
    width: 8px;
    background-color: var(--primary-purple);
    border-radius: 50%;
    display: inline-block;
    margin: 0 2px;
    opacity: 0.4;
    animation: typing 1s infinite;
}

.typing-indicator span:nth-child(1) {
    animation-delay: 0s;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0% {
        transform: translateY(0);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-5px);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }
}

/* Responsive adjustments for chatbot */
@media (max-width: 480px) {
    .chatbot-container {
        width: 300px;
        height: 400px;
        bottom: 70px;
        right: 0;
    }
}

/* Chatbot footer for AI-powered version */
.chatbot-footer {
    padding: 8px;
    text-align: center;
    font-size: 12px;
    color: #888;
    background-color: #f5f5f5;
    border-top: 1px solid #eee;
}

/* AI badge for the chatbot header */
.chatbot-header h3::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

/* Chatbot debug panel */
.chatbot-debug {
    border-top: 1px solid #eee;
    background-color: #f5f5f5;
}

/* Email logging toggle in debug panel */
.chatbot-debug-logging {
    margin: 10px 0 15px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
    border: 1px solid #e9e9e9;
}

.chatbot-debug-logging h5 {
    margin: 0 0 10px;
    font-size: 12px;
    color: #666;
    font-weight: 600;
}

.form-check-input:checked {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
}

.logging-status {
    font-size: 11px;
    color: #777;
    margin-top: 5px;
}

.chatbot-debug-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
    cursor: pointer;
}

.chatbot-debug-header h4 {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.chatbot-debug-toggle {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0;
    font-size: 14px;
}

.chatbot-debug-content {
    display: none;
    padding: 10px 15px;
    border-top: 1px solid #eee;
    max-height: 200px;
    overflow-y: auto;
}

.chatbot-debug-content.active {
    display: block;
}

.chatbot-debug-status {
    margin-bottom: 10px;
    font-size: 12px;
}

.chatbot-debug-status p {
    margin: 5px 0;
}

.ai-status, .api-key-status {
    font-weight: bold;
}

.ai-status.connected {
    color: #4CAF50;
}

.ai-status.error {
    color: #F44336;
}

.chatbot-debug-log {
    background-color: #333;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    font-family: monospace;
    font-size: 12px;
}

.chatbot-debug-log pre {
    margin: 0;
    white-space: pre-wrap;
    max-height: 100px;
    overflow-y: auto;
}

.chatbot-debug-test {
    background-color: var(--primary-purple);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    width: 100%;
}

.chatbot-debug-test:hover {
    background-color: #7D3C98;
}

/* API key input in debug panel */
.chatbot-debug-api-key {
    margin: 10px 0 15px;
}

.chatbot-debug-api-key h5 {
    margin: 0 0 5px;
    font-size: 12px;
    color: #666;
}

.api-key-input-group {
    display: flex;
    margin-bottom: 5px;
}

.api-key-input-group input {
    flex: 1;
    padding: 5px 8px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 12px;
    font-family: monospace;
}

.api-key-input-group button {
    background-color: var(--primary-purple);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 12px;
}

.api-key-help {
    font-size: 10px;
    color: #666;
    margin-top: 5px;
}

.api-key-help p {
    margin: 2px 0;
}

.api-key-help a {
    color: var(--primary-purple);
    text-decoration: none;
}

.api-key-help a:hover {
    text-decoration: underline;
}

/* Billing help button */
.chatbot-debug-billing-help {
    background-color: #F44336;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    width: 100%;
    margin-top: 10px;
    font-weight: bold;
}

.chatbot-debug-billing-help:hover {
    background-color: #D32F2F;
}

/* Calculator results styling */
.calculator-results {
    background: linear-gradient(to bottom, #ffffff, #f0f8ff);
    border-radius: 15px;
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.results-header h3 {
    margin: 0;
    color: var(--primary-purple);
    font-weight: 700;
}

.total-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    text-align: center;
    margin: 1.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.savings-info {
    background: linear-gradient(to right, rgba(142, 68, 173, 0.1), rgba(212, 175, 55, 0.1));
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.savings-badge {
    display: inline-block;
    background-color: var(--accent-gold);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.savings-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.25rem;
}

.savings-text {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.price-breakdown {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.breakdown-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.item-label {
    font-weight: 600;
    color: var(--dark-gray);
}

.item-value {
    font-weight: 700;
    color: var(--primary-purple);
}

/* Price updated animation */
@keyframes priceUpdated {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
        color: var(--accent-gold);
    }
    100% {
        transform: scale(1);
    }
}

.price-updated {
    animation: priceUpdated 0.5s ease;

}

/* Contact page button styling */
.contact-page .btn-primary {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
    color: white;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(142, 68, 173, 0.2);
}

.contact-page .btn-primary:hover {
    background-color: #7A3A93;
    border-color: #7A3A93;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(142, 68, 173, 0.3);
}

.contact-page .btn-outline-primary {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-page .btn-outline-primary:hover {
    background-color: var(--primary-purple);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(142, 68, 173, 0.2);
}

.contact-page .btn-secondary {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: white;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

.contact-page .btn-secondary:hover {
    background-color: #C19307;
    border-color: #C19307;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

.contact-page .btn-outline-secondary {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-page .btn-outline-secondary:hover {
    background-color: var(--accent-gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.2);
}

/* FAQ Section Styles */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    background-color: #f8f9fa;
    color: #212529;
    font-weight: 600;
    padding: 1.2rem;
    font-size: 1.1rem;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-purple);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(76, 139, 245, 0.25);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 1.2rem;
    background-color: white;
}

.accordion-body p {
    margin-bottom: 0;
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
} 