/* Astro1 Template - Modern Clean Design */
.pageRoot {
    --bg: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --primary: #ed5b00;
    --primary-600: #ff8c00;
    --border: rgba(16, 24, 40, 0.08);
    --card: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 252, 0.98));
    color: var(--text);
    background: var(--bg);
}

/* Hero Section */
.heroDecor {
    background-image:
        radial-gradient(600px 300px at 18% -12%, #eef2ff 0%, transparent 60%),
        radial-gradient(600px 300px at 82% 110%, #f5f3ff 0%, transparent 60%);
}

.hero {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.gradient-soft {
    background:
        radial-gradient(800px 400px at 0% 0%, rgba(247, 246, 255, 0.08) 0%, transparent 100%),
        radial-gradient(600px 400px at 100% 100%, rgba(252, 251, 255, 0.08) 0%, transparent 100%),
        linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

/* Hero Media/Carousel */
.heroMedia {
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mediaCaption {
    background: transparent;
}

/* Embla Carousel */
.embla { 
    position: relative; 
}

.emblaViewport {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    overflow: hidden;
}

.emblaContainer { 
    display: flex; 
    height: 100%; 
}

.emblaSlide { 
    position: relative; 
    flex: 0 0 100%; 
    height: 100%; 
}

.slideMedia { 
    position: relative; 
    width: 100%; 
    height: 100%; 
}

/* Carousel Controls */
.emblaPrev,
.emblaNext {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    color: var(--text);
    display: grid;
    place-items: center;
    z-index: 2;
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
    cursor: pointer;
    transition: all 0.3s ease;
}

.emblaPrev:hover,
.emblaNext:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.emblaPrev { left: 10px; }
.emblaNext { right: 10px; }

.emblaPrev:focus-visible,
.emblaNext:focus-visible,
.emblaDot:focus-visible { 
    outline: 2px solid var(--primary); 
    outline-offset: 2px; 
}

/* Carousel Dots */
.emblaDots {
    display: flex; 
    justify-content: center; 
    gap: 8px;
    margin-top: 8px;
}

.emblaDot { 
    width: 8px !important; 
    height: 8px !important; 
    border-radius: 16px; 
    background: rgba(16, 24, 40, 0.12); 
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.emblaDotActive { 
    background: var(--primary); 
    border-color: var(--primary); 
}

@media (max-width: 576px) {
    .emblaViewport { 
        aspect-ratio: 4/3; 
    }
}

/* Buttons */
.btnPrimary {
    padding: 0.7rem 1.15rem;
    border-radius: 12px;
    font-weight: 600;
    background-color: var(--primary);
    border-color: var(--primary);
    transition: all 0.3s ease;
}

.btnPrimary:hover {
    background-color: var(--primary-600);
    border-color: var(--primary-600);
    transform: translateY(-1px);
}

.btnOutline {
    padding: 0.7rem 1.15rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btnOutline:hover {
    transform: translateY(-1px);
}

/* Cards */
.cardSoft {
    background: var(--card);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.cardSoft:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(16, 24, 40, 0.08);
}

/* Badges */
.badgeSoft {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(16, 24, 40, 0.04);
    border-radius: 999px;
    font-size: 0.85rem;
}

.trustBar {
    margin-top: .5rem;
}

/* Grid Layouts */
.grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 991px) {
    .grid3 {
        grid-template-columns: 1fr;
    }
}

.servicesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 991px) {
    .servicesGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .servicesGrid {
        grid-template-columns: 1fr;
    }
}

/* Lists */
.bulletList {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bulletList li {
    position: relative;
    padding-left: 1.3rem;
    margin-bottom: .35rem;
    color: var(--text);
}

.bulletList li::before {
    content: '▹';
    position: absolute;
    left: 0;
    top: 0;
    color: #f59e0b;
}

/* Service Cards */
.serviceCard {
    transition: transform .2s ease, box-shadow .2s ease;
}

.serviceCard:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(16, 24, 40, 0.08);
}

.serviceThumb {
    position: relative;
    width: 100%;
    height: 256px;
    border-radius: 12px;
    overflow: hidden;
}

/* Testimonials */
.testimonialThumb {
    position: relative;
    width: 100%;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
}

.testimonialCard {
    border-radius: 14px;
    transition: all 0.3s ease;
}

.testimonialCard:hover {
    transform: translateY(-2px);
}

/* Special Sections */
.noteBox {
    border-left: 4px solid #2563eb;
    border-radius: 12px;
}

.quickConnectBox {
    border-radius: 12px;
}

.process-section {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    background: rgba(250, 250, 252, 0.6);
}

/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 767px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.step {
    text-align: center;
    border-radius: 12px;
}

.stepIndex {
    width: 56px;
    height: 56px;
    margin: 0 auto;
    border-radius: 14px;
    background: linear-gradient(135deg, #fffaf0, #eef4ff);
    color: #2e2b57;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(45, 35, 120, 0.06);
}

/* FAQ Section */
.faqSection {
    background: transparent;
}

.faqGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 991px) {
    .faqGrid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Accordion */
.accordion {
    display: grid;
    gap: 12px;
}

.accordionItem {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--card);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordionItem:hover {
    box-shadow: 0 4px 12px rgba(16, 24, 40, 0.05);
}

.accordionHeader {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.125rem;
    font-weight: 600;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: var(--text);
    transition: all 0.3s ease;
}

.accordionHeader:hover {
    background: rgba(16, 24, 40, 0.02);
}

.accordionIcon {
    font-size: 1.25rem;
    line-height: 1;
    color: var(--muted);
    transition: transform 0.3s ease;
}

.open .accordionIcon {
    transform: rotate(180deg);
}

.accordionBody {
    max-height: 0;
    opacity: 0;
    padding: 0 1.125rem;
    transition: max-height 240ms ease, opacity 220ms ease, padding 240ms ease;
}

.open .accordionBody {
    max-height: 220px;
    opacity: 1;
    padding: 0.75rem 1.125rem 1rem;
}

@media (min-width: 768px) {
    .open .accordionBody {
        max-height: 180px;
    }
}

/* CTA Section */
.ctaWrap {
    border-radius: 14px;
}

/* Form Elements */
.formControlLarge {
    padding: .75rem .9rem;
    border-radius: 10px;
}

/* Responsive Adjustments */
@media (max-width: 575px) {
    .heroImageWrap {
        height: 220px;
    }
}

/* Accessibility */
.reducedMotion :global(*) {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
}