@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;700&family=Cabin:wght@400;600&display=swap');

:root {
    --bq0-primary: #7e22ce;
    --bq0-secondary: #581c87;
    --bq0-accent: #fb923c;
    --bq0-background: #faf5ff;
    --bq0-text: #3b0764;
    --bq0-muted: #c084fc;
    --bq0-light-gray: #e0e0e0;
    --bq0-dark-gray: #333;
    --bq0-white: #ffffff;
    
    --ws-font-heading: 'Archivo', sans-serif;
    --ws-font-body: 'Cabin', sans-serif;

    --ws-padding-section-desktop: 100px 0;
    --ws-padding-section-mobile: 60px 0;

    --ws-border-radius: 8px;
    --ws-transition-speed: 0.3s ease-in-out;
}

/* Base Reset & Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--ws-font-body);
    line-height: 1.6;
    color: var(--bq0-text);
    background-color: var(--bq0-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--bq0-accent);
    color: var(--bq0-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ws-font-heading);
    color: var(--bq0-secondary);
    margin-bottom: 0.8em;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--bq0-primary);
}

h3 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--bq0-secondary);
}

h4 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--bq0-primary);
}

h5 {
    font-size: clamp(1.25rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: var(--bq0-secondary);
}

h6 {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 600;
    color: var(--bq0-primary);
}

p {
    margin-bottom: 1em;
    font-size: 1.1rem;
}

a {
    color: var(--bq0-primary);
    text-decoration: none;
    transition: color var(--ws-transition-speed), transform var(--ws-transition-speed);
}

a:hover {
    color: var(--bq0-accent);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    margin-left: 20px;
    margin-bottom: 1em;
}

/* Utility Classes */
.ws-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ws-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.ws-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ws-text-center {
    text-align: center;
}

.ws-text-left {
    text-align: left;
}

.ws-text-right {
    text-align: right;
}

.ws-section-padding {
    padding: var(--ws-padding-section-desktop);
}

.ws-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.ws-animate.ws-in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.ws-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all var(--ws-transition-speed);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ws-btn-primary {
    background-color: var(--bq0-primary);
    color: var(--bq0-white);
    border: 2px solid var(--bq0-primary);
}

.ws-btn-primary:hover {
    background-color: var(--bq0-secondary);
    border-color: var(--bq0-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.ws-btn-secondary {
    background-color: var(--bq0-accent);
    color: var(--bq0-white);
    border: 2px solid var(--bq0-accent);
}

.ws-btn-secondary:hover {
    background-color: var(--bq0-primary);
    border-color: var(--bq0-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.ws-btn-outline {
    background-color: transparent;
    color: var(--bq0-primary);
    border: 2px solid var(--bq0-primary);
}

.ws-btn-outline:hover {
    background-color: var(--bq0-primary);
    color: var(--bq0-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.ws-btn-icon-left i {
    margin-right: 8px;
}

/* Header & Navigation */
.ws-header {
    background-color: var(--bq0-white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.ws-header .ws-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ws-logo {
    font-family: var(--ws-font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bq0-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.ws-logo img {
    height: 40px;
    margin-right: 10px;
}

.ws-nav-menu {
    list-style: none;
    display: flex;
}

.ws-nav-menu li {
    margin-left: 30px;
}

.ws-nav-menu a {
    color: var(--bq0-secondary);
    font-weight: 600;
    font-size: 1.05rem;
    transition: color var(--ws-transition-speed);
    position: relative;
}

.ws-nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--bq0-accent);
    transition: width var(--ws-transition-speed);
}

.ws-nav-menu a:hover::after {
    width: 100%;
}

.ws-burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.ws-burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--bq0-primary);
    margin: 4px 0;
    transition: all var(--ws-transition-speed);
}

.ws-nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--bq0-primary);
    padding-top: 80px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    transition: right var(--ws-transition-speed);
    z-index: 999;
    flex-direction: column;
    list-style: none;
}

.ws-nav-mobile.active {
    right: 0;
}

.ws-nav-mobile li {
    margin-bottom: 20px;
    text-align: center;
}

.ws-nav-mobile a {
    color: var(--bq0-white);
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    padding: 10px 0;
}

.ws-nav-mobile a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.ws-hero {
    background: linear-gradient(rgba(126, 34, 206, 0.7), rgba(88, 28, 135, 0.8)), url('https://loremflickr.com/1400/800/diy%2Ccraft/all?lock=1593082845') center center no-repeat;
    background-size: cover;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: var(--bq0-white);
    text-align: center;
    position: relative;
}

.ws-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.ws-hero h1 {
    color: var(--bq0-white);
    margin-bottom: 20px;
}

.ws-hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    line-height: 1.5;
}

.ws-hero .ws-btn {
    font-size: 1.2rem;
    padding: 16px 32px;
}

/* Section Styling */
.ws-section {
    padding: var(--ws-padding-section-desktop);
    position: relative;
    overflow: hidden;
}

.ws-section:nth-of-type(even) {
    background-color: var(--bq0-light-gray);
}

.ws-section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.ws-section-heading h2 {
    margin-bottom: 15px;
}

.ws-section-heading p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--bq0-secondary);
}

/* Cards */
.ws-card {
    background-color: var(--bq0-white);
    border-radius: var(--ws-border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform var(--ws-transition-speed), box-shadow var(--ws-transition-speed);
}

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

.ws-card img {
    border-radius: var(--ws-border-radius) var(--ws-border-radius) 0 0;
    margin-bottom: 20px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ws-card .ws-card-icon {
    font-size: 3rem;
    color: var(--bq0-primary);
    margin-bottom: 20px;
}

.ws-card h3 {
    margin-bottom: 15px;
    font-size: 1.7rem;
}

.ws-card p {
    font-size: 1rem;
    color: var(--bq0-text);
}

/* Process Section */
.ws-process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 20px;
    background-color: var(--bq0-white);
    border-radius: var(--ws-border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform var(--ws-transition-speed), box-shadow var(--ws-transition-speed);
}

.ws-process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ws-process-step i {
    font-size: 2.5rem;
    color: var(--bq0-primary);
    margin-right: 20px;
    flex-shrink: 0;
    padding-top: 5px;
}

.ws-process-step-content h3 {
    margin-bottom: 10px;
    color: var(--bq0-secondary);
}

.ws-process-step-content p {
    font-size: 1rem;
}

/* Testimonials */
.ws-testimonial-card {
    background-color: var(--bq0-white);
    padding: 40px;
    border-radius: var(--ws-border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.ws-testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--bq0-text);
}

.ws-testimonial-card .ws-author {
    font-weight: 600;
    color: var(--bq0-primary);
    display: block;
    margin-top: 10px;
}

.ws-testimonial-card .ws-context {
    font-size: 0.9em;
    color: var(--bq0-secondary);
}

/* Trust Indicators */
.ws-trust-item {
    display: inline-flex;
    align-items: center;
    background-color: rgba(192, 132, 252, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    margin: 10px;
    font-weight: 600;
    color: var(--bq0-primary);
    font-size: 1.1rem;
    transition: background-color var(--ws-transition-speed), transform var(--ws-transition-speed);
}

.ws-trust-item:hover {
    background-color: rgba(192, 132, 252, 0.2);
    transform: translateY(-3px);
}

.ws-trust-item i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: var(--bq0-accent);
}

/* Pricing Table */
.ws-pricing-plan {
    background-color: var(--bq0-white);
    border-radius: var(--ws-border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
    text-align: center;
    transition: transform var(--ws-transition-speed), box-shadow var(--ws-transition-speed);
    display: flex;
    flex-direction: column;
}

.ws-pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.ws-pricing-plan h3 {
    color: var(--bq0-primary);
    margin-bottom: 15px;
}

.ws-pricing-plan .ws-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bq0-accent);
    margin-bottom: 20px;
}

.ws-pricing-plan .ws-price span {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--bq0-secondary);
}

.ws-pricing-plan ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.ws-pricing-plan ul li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: var(--bq0-text);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ws-pricing-plan ul li i {
    color: var(--bq0-primary);
    margin-right: 8px;
}

/* Contact Form */
.ws-form-group {
    margin-bottom: 20px;
}

.ws-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--bq0-secondary);
}

.ws-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--bq0-muted);
    border-radius: var(--ws-border-radius);
    font-size: 1rem;
    font-family: var(--ws-font-body);
    color: var(--bq0-text);
    transition: border-color var(--ws-transition-speed), box-shadow var(--ws-transition-speed);
}

.ws-form-control:focus {
    outline: none;
    border-color: var(--bq0-primary);
    box-shadow: 0 0 0 3px rgba(126, 34, 206, 0.2);
}

textarea.ws-form-control {
    min-height: 120px;
    resize: vertical;
}

.ws-form-success, .ws-form-error {
    padding: 15px;
    border-radius: var(--ws-border-radius);
    margin-top: 20px;
    font-weight: 600;
    display: none;
    text-align: center;
}

.ws-form-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.ws-form-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* FAQ Accordion */
.ws-faq-item {
    background-color: var(--bq0-white);
    border-radius: var(--ws-border-radius);
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: box-shadow var(--ws-transition-speed);
}

.ws-faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ws-faq-q {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--bq0-secondary);
    font-size: 1.15rem;
    background-color: var(--bq0-background);
    transition: background-color var(--ws-transition-speed);
}

.ws-faq-q:hover {
    background-color: var(--bq0-muted);
}

.ws-faq-q::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--bq0-primary);
    transition: transform var(--ws-transition-speed);
}

.ws-faq-item.active .ws-faq-q::after {
    transform: rotate(45deg);
}

.ws-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding var(--ws-transition-speed);
    padding: 0 30px;
}

.ws-faq-item.active .ws-faq-a {
    max-height: 500px; /* Adjust as needed */
    padding: 20px 30px 30px;
}

.ws-faq-a p {
    margin-bottom: 0;
    color: var(--bq0-text);
}

/* Footer */
.ws-footer {
    background-color: var(--bq0-secondary);
    color: var(--bq0-white);
    padding: var(--ws-padding-section-desktop) 0 40px;
    font-size: 0.95rem;
}

.ws-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.ws-footer-col h4 {
    color: var(--bq0-accent);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.ws-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ws-footer-col ul li {
    margin-bottom: 10px;
}

.ws-footer-col ul li a {
    color: var(--bq0-white);
    opacity: 0.8;
    transition: opacity var(--ws-transition-speed);
}

.ws-footer-col ul li a:hover {
    opacity: 1;
    color: var(--bq0-accent);
    text-decoration: none;
}

.ws-footer-col p {
    color: var(--bq0-white);
    opacity: 0.8;
    margin-bottom: 10px;
}

.ws-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ws-footer-bottom p {
    margin: 0;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ws-hero p {
        font-size: 1.2rem;
    }

    .ws-nav-menu {
        margin-left: auto; /* Push links to the right */
    }

    .ws-nav-menu li {
        margin-left: 20px;
    }

    .ws-pricing-plan {
        padding: 30px;
    }

    .ws-trust-item {
        font-size: 1rem;
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .ws-header .ws-container {
        padding: 0 20px;
    }

    .ws-nav-menu {
        display: none;
    }

    .ws-burger-menu {
        display: flex;
    }

    .ws-hero {
        min-height: 60vh;
        padding: 60px 0;
    }

    .ws-hero h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .ws-hero p {
        font-size: 1.1rem;
    }

    .ws-section-padding {
        padding: var(--ws-padding-section-mobile);
    }

    .ws-section-heading {
        margin-bottom: 40px;
    }

    .ws-grid {
        grid-template-columns: 1fr;
    }

    .ws-process-step {
        flex-direction: column;
        text-align: center;
    }

    .ws-process-step i {
        margin: 0 auto 20px auto;
        padding-top: 0;
    }

    .ws-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ws-footer-col h4 {
        margin-bottom: 10px;
    }

    .ws-footer-col ul li {
        display: inline-block;
        margin: 0 10px 10px;
    }

    .ws-faq-q {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .ws-faq-a {
        padding: 15px 20px 20px;
    }

    .ws-trust-item {
        margin: 5px;
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    .ws-trust-item i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .ws-logo {
        font-size: 1.5rem;
    }
    .ws-logo img {
        height: 30px;
    }

    .ws-hero h1 {
        font-size: clamp(1.8rem, 10vw, 3rem);
    }

    .ws-hero p {
        font-size: 1rem;
    }

    .ws-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .ws-nav-mobile {
        width: 100%;
        max-width: none;
    }

    .ws-card {
        padding: 20px;
    }

    .ws-card h3 {
        font-size: 1.5rem;
    }

    .ws-pricing-plan {
        padding: 20px;
    }

    .ws-pricing-plan .ws-price {
        font-size: 2.5rem;
    }

    .ws-trust-item {
        display: block;
        margin: 8px auto;
        width: fit-content;
    }

    .ws-faq-q {
        font-size: 0.95rem;
    }
}

/* Visual Separator - Example */
.ws-section-separator {
    width: 80%;
    max-width: 600px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--bq0-primary), transparent);
    margin: 60px auto;
    border-radius: 5px;
}

/* Adjustments for contact page */
.ws-contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.ws-contact-info {
    background-color: var(--bq0-background);
    padding: 30px;
    border-radius: var(--ws-border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.ws-contact-info h3 {
    color: var(--bq0-primary);
    margin-bottom: 25px;
}

.ws-contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.ws-contact-detail i {
    font-size: 1.8rem;
    color: var(--bq0-accent);
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.ws-contact-detail span, .ws-contact-detail a {
    color: var(--bq0-text);
    text-decoration: none;
}

.ws-contact-detail a:hover {
    color: var(--bq0-primary);
    text-decoration: underline;
}

.ws-business-hours p {
    font-size: 1rem;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .ws-contact-grid {
        grid-template-columns: 1fr;
    }
    .ws-contact-info {
        order: -1; /* Move info block above form on mobile */
    }
}


/* === Quality polish === */
button, [class*="btn"], [class*="cta"] { transition: all 0.3s ease; cursor: pointer; }
button:hover, [class*="btn"]:hover, [class*="cta"]:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); filter: brightness(1.05); }

@keyframes wsFadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.ws-animate { opacity: 0; }
.ws-animate.ws-visible { animation: wsFadeInUp 0.6s ease forwards; }