/* Hero Section */
.hero {
    padding-top: 10rem;
    padding-bottom: 4rem;
    background: transparent;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-text {
    max-width: 50rem;
    margin-bottom: 2rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--accent-blue);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    letter-spacing: 0.05em;
}

.InBeta{
margin-bottom: 1.5rem;
color:#FF8C00;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--accent-red);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 6rem;
}

.hero-btns {
    display: flex;
    gap: 3.5rem;
    justify-content: center;
}

.hero-visual {
    width: 100%;
    max-width: 60rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.decor-bg {
    position: absolute;
    width: 86%;
    top: -65%;
    height: auto;
    object-fit: contain;
    z-index: -1;
    animation: decor-drift 20s linear infinite alternate;
    pointer-events: none;
}

@keyframes decor-drift {
    from {
        transform: scale(1) translate(-2%, -2%);
    }

    to {
        transform: scale(1.1) translate(2%, 2%);
    }
}

.hero-cat {
    width: 80%;
    height: auto;
    object-fit: contain;
    z-index: 2;
    aspect-ratio: 2/1;
    animation: float-cute 6s ease-in-out infinite;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
}

@keyframes float-cute {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Intro Section */
#service {
    padding-bottom: 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.intro-card {
    padding: 0 2.5rem 2.5rem;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid #E2E8F0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.intro-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.intro-card .icon {
    width: 4rem;
    height: 9rem;
    margin: 0 auto -1.5em;
    background-image: url('../img/icons.webp');
    background-size: 300% 100%;
    background-repeat: no-repeat;
}

.intro-card:nth-child(1) .icon {
    background-position: 0 0;
}

.intro-card:nth-child(2) .icon {
    background-position: 50% 0;
}

.intro-card:nth-child(3) .icon {
    background-position: 100% 0;
}

.go_sample {
    margin-top: 2.5rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    width: 12em;
    line-height: 2;
    padding:0 0.75em;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
    border-radius: 1em;
    background: var(--primary);
}

.intro-card p {
    text-align: left;
}

/* Packs Section */
.packs {
    background: var(--white);
    color: var(--text-dark);
    padding-bottom: 0;
}

.packs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    align-items: stretch;
}

.pack-card {
    background: white;
    border: 0.25rem solid var(--primary);
    padding: 2em 2rem 0;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: all 0.4s ease;
    height: 100%;
}

.pack-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.1);
}

.pack-name {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0;
    line-height: 1.2;
    color: var(--primary);
    min-height: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.pack-name span {
    display: block;
    white-space: nowrap;
}

.pack-price-wrapper {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 7.5rem;
    justify-content: center;
}

.price-item {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.price-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    min-width: 4rem;
}

.price-value {
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    display: inline-block;
    transform: translateY(0.2rem);
}

.price-sub {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.pack-desc {
    font-size: 0.9rem;
    color: #000;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.pack-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pack-features li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pack-features li::before {
    content: '✓';
    color: var(--accent-green);
    font-weight: 900;
}

.packs-cta {
    margin-top: 5rem;
    text-align: center;
}

.btn-large-cta {
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1.25rem 4rem;
    background-color: var(--primary);
    color: white;
    border-radius: 50px;
}

.btn-large-cta:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05) translateY(-3px);
}

/* Service Caution Section */
.service-caution {
    padding-top: 4rem;
    padding-bottom: 0;
}

.caution-box {
    background-color: transparent;
    border-radius: var(--radius);
    padding: 1.75rem;
    text-align: left;
    border: 1px solid #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 6rem;
}

.caution-title {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.caution-grid {
    display: grid;
    grid-template-columns: 3.5fr 6.5fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.inclusion-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: -0.5em;
}

.inclusion-list li {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.caution-item p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.75;
}

.caution-footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.caution-divider {
    margin: .5rem 0;
    border: 0;
    border-top: 1px dashed #CBD5E1;
}

.small-note {
    font-size: 0.7rem !important;
    opacity: 0.8;
}

/* Vision Section */
.vision-section {
    background: transparent;
    padding-top: 4em;
}

.vision-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.vision-img {
    width: 43%;
}

.vision-img img {
    width: 100%;
}

.vision-text {
    width: 65%;
}

.vision-text h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.vision-text p {
    font-size: 1.25rem;
}

.section-subtitle {
    margin-bottom: 1rem;
}

#service h3{
     margin-bottom: 1rem;
}
#service .container>h3{
     margin-bottom: 4rem;
}

/* Contact Form */
form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    background: transparent;
    border: 1px solid #ccc;
    padding: 3rem;
    border-radius: var(--radius);
    max-width: 50rem;
    margin: 3rem auto 0;
    text-align: left;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    display: inline-block;
    margin-bottom: 0.25em;
    font-weight: 700;
    font-family: var(--font-heading);
}

input,
select,
textarea {
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #ccc;
    font-size: 1rem;
    width: 100%;
}

.form-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 1rem;
    width: 100%;
}

.btn-block {
    display: block;
    width: 100%;
    font-size: 1.25rem;
}

.form-note {
    font-size: 0.8em;
    margin-top: 1.5rem;
    grid-column: 1 / -1;
    text-align: left;
    width: 100%;
}

.footer-note {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #666;
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive Index Styles */
@media (max-width: 768px) {

    .packs-grid,
    .intro-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 7rem;
        padding-bottom: 0;
        text-align: left;
        width: 85%;
        margin: 0 auto 6em;
    }

    .hero p {
        margin-bottom: 4rem;
    }

    .hero h1 {
        font-size: 3rem;
        white-space: nowrap;
    }

    .decor-bg {
        top: -175%;
        width: 180%;
    }

    .btn-large-cta {
        padding: 1.25rem 2rem;
    }

    .caution-box {
        padding: 1.25rem;
        margin: 0;
    }

    .caution-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .caution-title {
        font-size: 1.05rem;
    }

    .caution-item p {
        font-size: 0.85rem;
    }

    .inclusion-list {
        margin-top: 0;
    }

    .inclusion-list li {
        white-space: normal;
    }

    .vision-img {
        width: 75%;
    }

    .vision-text {
        width: 100%;
    }

    .vision-text h2 {
        width: 65%;
        margin-left: auto;
        margin-right: auto;
    }

    .vision-text p {
        font-size: 1.15rem;
    }

    #contact {
        padding-bottom: 0;
        padding-top: 0;
    }

    #service h3{
        font-size: 1.1rem;
    }

    

    form {
        display: block;
        padding: 2rem 1.25rem;
        margin: 2rem 0;
        width: 100%;
        box-sizing: border-box;
    }

    .form-group,
    .form-submit,
    .form-note {
        display: block;
        width: 100% !important;
        margin-bottom: 1.5rem;
    }

    .btn-block {
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        font-size: 1.25rem;
    }

    .form-submit {
        text-align: center;
    }

    .form-note {
        text-align: left;
        font-size: 0.8rem;
    }
}