* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    font-family: 'Shippori Mincho', serif;
    color: #1e1e2f;
    background-color: #faf8f4
}

h1, h2, h3, h4, h5 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 700;
    line-height: 1.3
}

section{
    overflow: hidden;
}

h1 {
    font-size: 2.8rem
}

h2 {
    font-size: 2.2rem
}

h3 {
    font-size: 1.6rem
}

h5 {
    font-size: 1.15rem
}

p {
    margin-top: 0;
    margin-bottom: 1rem
}

a {
    text-decoration: none;
    color: #d4943a;
    transition: opacity .2s
}

a:hover {
    opacity: .75
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle
}

button, input, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -.75rem
}

.row > * {
    padding: 0 .75rem;
    width: 100%
}

.col-12 {
    width: 100%
}

.col-md-4, .col-md-6, .col-md-8, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-10 {
    width: 100%
}

.text-center {
    text-align: center
}

.mb-0 {
    margin-bottom: 0
}

.mb-1 {
    margin-bottom: .25rem
}

.mb-2 {
    margin-bottom: .5rem
}

.mb-3 {
    margin-bottom: 1rem
}

.mb-4 {
    margin-bottom: 1.5rem
}

.mb-5 {
    margin-bottom: 2rem
}

.mb-6 {
    margin-bottom: 3rem
}

.mt-3 {
    margin-top: 1rem
}

.mt-4 {
    margin-top: 1.5rem
}

.py-4 {
    padding-top: 2rem;
    padding-bottom: 2rem
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem
}

.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem
}

.p-3 {
    padding: 1rem
}

.p-4 {
    padding: 1.5rem
}

.p-5 {
    padding: 2.5rem
}

.d-flex {
    display: flex
}

.flex-column {
    flex-direction: column
}

.flex-wrap {
    flex-wrap: wrap
}

.align-items-center {
    align-items: center
}

.justify-content-center {
    justify-content: center
}

.justify-content-between {
    justify-content: space-between
}

.gap-2 {
    gap: .75rem
}

.gap-3 {
    gap: 1rem
}

.gap-4 {
    gap: 1.5rem
}

.fw-bold {
    font-weight: 700
}

.fs-sm {
    font-size: .875rem
}

.fs-lg {
    font-size: 1.125rem
}

.rounded {
    border-radius: .5rem
}

.rounded-lg {
    border-radius: 1rem
}

.shadow {
    box-shadow: 0 4px 24px rgba(30, 30, 47, .08)
}

.shadow-lg {
    box-shadow: 0 8px 40px rgba(30, 30, 47, .12)
}

.img-fluid {
    max-width: 100%;
    height: auto
}

.w-100 {
    width: 100%
}

.position-relative {
    position: relative
}

.overflow-hidden {
    overflow: hidden
}

:root {
    --clr-primary: #4a3267;
    --clr-primary-light: #6b4d8a;
    --clr-accent: #d4943a;
    --clr-accent-light: #e8b96e;
    --clr-dark: #1e1e2f;
    --clr-cream: #f0e6d3;
    --clr-bg: #faf8f4;
    --clr-bg2: #eee8dc;
    --clr-text-light: #f5f2ed
}

.bg-primary-c {
    background-color: var(--clr-primary)
}

.bg-accent-c {
    background-color: var(--clr-accent)
}

.bg-cream {
    background-color: var(--clr-cream)
}

.bg-dark-c {
    background-color: var(--clr-dark)
}

.bg-bg2 {
    background-color: var(--clr-bg2)
}

.text-primary-c {
    color: var(--clr-primary)
}

.text-accent-c {
    color: var(--clr-accent)
}

.text-muted-c {
    color: #6b6b7b
}

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-image: url('../containerimg/imgkai1.webp')
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74, 50, 103, .92), rgba(30, 30, 47, .8))
}

.hero-content {
    position: relative;
    z-index: 2
}

.btn-main {
    display: inline-block;
    padding: .9rem 2.2rem;
    background: var(--clr-accent);
    color: #fff;
    border: none;
    border-radius: .5rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background .2s, transform .2s
}

.btn-main:hover {
    background: var(--clr-accent-light);
    transform: translateY(-2px);
    opacity: 1;
    color: #fff
}

.btn-outline {
    display: inline-block;
    padding: .9rem 2.2rem;
    background: transparent;
    color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
    border-radius: .5rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all .2s
}

.btn-outline:hover {
    background: var(--clr-primary);
    color: #fff;
    opacity: 1
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--clr-accent);
    border-radius: 2px;
    margin-bottom: 1.5rem
}

.form-control {
    display: block;
    width: 100%;
    padding: .8rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: .5rem;
    background: #fff;
    transition: border-color .2s
}

.form-control:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(74, 50, 103, .15)
}

.form-label {
    display: block;
    margin-bottom: .4rem;
    font-weight: 700;
    font-size: .9rem;
    color: var(--clr-dark)
}

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

.gradient-bar {
    height: 6px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
    border-radius: 3px
}

.card-c {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(30, 30, 47, .07);
    transition: transform .25s
}

.card-c:hover {
    transform: translateY(-4px)
}

.pricing-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 24px rgba(30, 30, 47, .07);
    border-top: 5px solid var(--clr-cream);
    transition: transform .25s
}

.pricing-card:hover {
    transform: translateY(-6px)
}

.pricing-card.featured {
    border-top-color: var(--clr-accent);
    box-shadow: 0 8px 40px rgba(212, 148, 58, .18)
}

.pricing-price {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--clr-primary)
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #6b6b7b
}

.stat-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem
}

.footer-section {
    background: var(--clr-dark);
    color: var(--clr-text-light);
    padding: 3.5rem 0 1.5rem
}

.footer-section a {
    color: var(--clr-accent-light)
}

.footer-section a:hover {
    color: var(--clr-accent)
}

.footer-bottom {
    border-top: 1px solid rgba(245, 242, 237, .1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    font-size: .85rem;
    color: rgba(245, 242, 237, .5)
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    opacity: .08;
    background: var(--clr-accent)
}

.inner-hero {
    position: relative;
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, var(--clr-primary), #2d1a47);
    color: var(--clr-text-light)
}

.inner-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--clr-accent), var(--clr-primary))
}

.legal-content {
    padding: 3rem 0
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: .75rem;
    color: var(--clr-primary)
}

.legal-content p {
    color: #4a4a5a;
    line-height: 1.8
}

.thankyou-wrap {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--clr-primary), #2d1a47);
    color: #fff
}

@media (min-width: 768px) {
    .col-md-4 {
        width: 33.333%
    }

    .col-md-6 {
        width: 50%
    }

    .col-md-8 {
        width: 66.666%
    }
}

@media (min-width: 992px) {
    .col-lg-3 {
        width: 25%
    }

    .col-lg-4 {
        width: 33.333%
    }

    .col-lg-5 {
        width: 41.666%
    }

    .col-lg-6 {
        width: 50%
    }

    .col-lg-7 {
        width: 58.333%
    }

    .col-lg-8 {
        width: 66.666%
    }

    .col-lg-10 {
        width: 83.333%
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2rem
    }

    h2 {
        font-size: 1.6rem
    }

    .hero-section {
        min-height: 70vh
    }

    .pricing-price {
        font-size: 2.2rem
    }

    .footer-bottom .row > * {
        text-align: left !important
    }
}
