/* Base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background-color: #0b0323; /* deep violet/black */
    color: #ffffff;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3 {
    font-weight: 600;
}

/* Navigation */
.navbar {
    width: 100%;
    background-color: #0b0323;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-size: 1.25rem;
    color: #b297e4;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.nav-links a {
    color: #c8b8f4;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}
.nav-links a:hover {
    color: #ffffff;
}
.nav-links .btn-primary {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background-color: #7c3aed;
    color: #ffffff;
    transition: background-color 0.2s ease;
}
.nav-links .btn-primary:hover {
    background-color: #6b21a8;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}
.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: #c8b8f4;
}

/* Logo container and branding */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-logo {
    width: 32px;
    height: 32px;
    border-radius: 4px;
}
.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #b297e4;
}
/* Hero */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 6rem auto 3rem;
    padding: 0 1rem;
}
.hero-content {
    flex: 1 1 50%;
    max-width: 600px;
}
.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}
.hero-content p {
    margin-bottom: 1.5rem;
    color: #d7cfe5;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
}
.hero-image {
    flex: 1 1 40%;
    max-width: 500px;
    text-align: right;
}
.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}
/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.btn-primary {
    background-color: #7c3aed;
    color: #ffffff;
}
.btn-primary:hover {
    background-color: #6b21a8;
}
.btn-secondary {
    border: 2px solid #7c3aed;
    color: #7c3aed;
    background-color: transparent;
}
.btn-secondary:hover {
    background-color: #7c3aed;
    color: #ffffff;
}
.btn-primary.active,
.btn-secondary.active {
    background-color: #7c3aed;
    color: #ffffff;
}
/* Sections */
section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}
h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #ffffff;
}
p {
    margin-bottom: 1rem;
    color: #d7cfe5;
    font-size: 0.95rem;
}
/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
}
.service-card:hover {
    transform: translateY(-4px);
}
.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}
.service-card p {
    flex-grow: 1;
    color: #d7cfe5;
    margin-bottom: 1rem;
}
/* Pricing */
.pricing-list {
    list-style: none;
    margin: 2rem 0;
    padding-left: 1rem;
}
.pricing-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
    color: #d7cfe5;
}
.pricing-list li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: #7c3aed;
}
.pricing-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}
/* Process */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.step {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.step-number {
    display: inline-block;
    background-color: #7c3aed;
    color: #ffffff;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 0.75rem;
}
.step h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}
.step p {
    color: #d7cfe5;
    font-size: 0.9rem;
}
/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #ffffff;
}
.gallery-info h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: #ffffff;
}
.gallery-info p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: #d7cfe5;
}
/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.faq-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}
.faq-item p {
    color: #d7cfe5;
    font-size: 0.9rem;
}
/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}
.contact-item p a {
    color: #7c3aed;
}
/* Booking */
.book {
    padding-top: 4rem;
}
.booking-buttons {
    display: flex;
    gap: 1rem;
    margin: 1rem 0 2rem;
    flex-wrap: wrap;
}
.booking-buttons button {
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    border: 2px solid #7c3aed;
    background-color: transparent;
    color: #7c3aed;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.booking-buttons button:hover {
    background-color: #7c3aed;
    color: #ffffff;
}
.booking-buttons button.active {
    background-color: #7c3aed;
    color: #ffffff;
}
.calendly-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 630px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.calendly-inline-widget {
    width: 100%;
    height: 630px;
    border: none;
}
/* Footer */
.footer {
    background-color: #0b0323;
    text-align: center;
    padding: 1rem 0;
    color: #6c5f8a;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-content, .hero-image {
        max-width: 100%;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #0b0323;
        flex-direction: column;
        width: 200px;
        padding: 1rem;
        display: none;
        box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        margin: 0.5rem 0;
    }
    .nav-toggle {
        display: flex;
    }
}