/* ========================================
   Landing Page - Laser Hair Removal
   Modern, Professional & Mobile-First Design
   ======================================== */

:root {
    --laser-primary: #7b3fe4;
    --laser-primary-dark: #6232c7;
    --laser-secondary: #f7f2ff;
    --laser-dark: #2a2640;
    --laser-gradient: linear-gradient(135deg, #7b3fe4 0%, #b44cff 100%);
    --laser-gradient-soft: linear-gradient(135deg, rgba(123,63,228,.1) 0%, rgba(180,76,255,.05) 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,.08);
    --shadow-lg: 0 16px 40px rgba(0,0,0,.1);
    --shadow-xl: 0 24px 60px rgba(123,63,228,.2);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   HERO SECTION
   ======================================== */

.laser-hero {
    position: relative;
    background: var(--laser-gradient);
    color: #fff;
    overflow: hidden;
    padding: 4rem 0 5rem;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.laser-hero .container {
    position: relative;
    z-index: 2;
}

/* Animated background orbs */
.laser-hero .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.laser-hero .orb-1 {
    width: 350px;
    height: 350px;
    background: #b44cff;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.laser-hero .orb-2 {
    width: 400px;
    height: 400px;
    background: #6fdef7;
    bottom: -120px;
    left: -120px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

.laser-hero h1 {
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
}

.laser-hero .lead {
    color: #f2eefe;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.laser-hero .cta-group {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.laser-hero .btn-appointment {
    background: #fff;
    color: var(--laser-dark);
    border: none;
    font-weight: 700;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

.laser-hero .btn-appointment:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,.2);
}

.laser-hero .btn-outline-light {
    border: 2px solid rgba(255,255,255,.4);
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,.08);
}

.laser-hero .btn-outline-light:hover {
    background: rgba(255,255,255,.2);
    border-color: rgba(255,255,255,.6);
    transform: translateY(-2px);
}

.badge-soft-primary {
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.badge-soft-primary:hover {
    background: rgba(255,255,255,.25);
    transform: translateY(-2px);
}

.laser-img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    transition: var(--transition);
}

.laser-img:hover {
    transform: scale(1.02);
    box-shadow: 0 24px 70px rgba(0,0,0,.3);
}

/* ========================================
   SECTIONS
   ======================================== */

.laser-section {
    padding: 4.5rem 0;
}

.laser-section.alt {
    background: var(--laser-secondary);
}

.laser-section h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--laser-dark);
}

.laser-section p.text-muted {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: #666;
}

/* ========================================
   OFFER BANNER
   ======================================== */

.offer-banner {
    padding: 3rem 0 4rem;
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.offer-banner img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.offer-banner img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.offer-banner .offer-note {
    display: inline-block;
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    color: var(--laser-dark);
    border: 2px solid rgba(123,63,228,.2);
    padding: 1.25rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    font-weight: 700;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.6;
    max-width: 100%;
    transition: var(--transition);
}

.offer-banner .offer-note:hover {
    border-color: var(--laser-primary);
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.offer-banner .offer-note .text-muted {
    font-weight: 600;
    color: #666;
    display: block;
    margin-top: 0.5rem;
}

/* ========================================
   VIDEO SECTION
   ======================================== */

.video-intro-section {
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
    padding: 4.5rem 0;
}

.video-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: #000;
    border: 3px solid rgba(123,63,228,.15);
    transition: var(--transition);
}

.video-wrapper:hover {
    border-color: rgba(123,63,228,.3);
    box-shadow: 0 28px 70px rgba(123,63,228,.25);
    transform: translateY(-4px);
}

.video-wrapper video {
    display: block;
    width: 100%;
    max-height: 550px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* ========================================
   GALLERY SECTION
   ======================================== */

.gallery-section {
    background: #fff;
    padding: 4.5rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    aspect-ratio: 3/4;
    background: #f5f5f5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(123,63,228,.92) 0%, rgba(180,76,255,.88) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.gallery-overlay .gallery-text {
    color: #fff;
    text-align: center;
    transform: translateY(15px);
    transition: var(--transition);
}

.gallery-overlay .gallery-text i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.gallery-overlay .gallery-text p {
    font-weight: 600;
    font-size: 1.05rem;
    margin: 0;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(123,63,228,.3);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-text {
    transform: translateY(0);
}

/* ========================================
   FEATURES / ADVANTAGES
   ======================================== */

.laser-feature {
    height: 100%;
    border: 1px solid #e8e8e8;
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    padding: 2rem 1.5rem;
}

.laser-feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(123,63,228,.2);
}

.laser-feature .icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    background: var(--laser-gradient-soft);
    color: var(--laser-primary);
    font-size: 1.75rem;
    transition: var(--transition);
}

.laser-feature:hover .icon {
    background: var(--laser-gradient);
    color: #fff;
    transform: scale(1.1);
}

.laser-feature h5 {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--laser-dark);
}

/* ========================================
   STEPS
   ======================================== */

.laser-steps .step {
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: var(--shadow-sm);
    padding: 2rem 1.25rem;
    transition: var(--transition);
    height: 100%;
}

.laser-steps .step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(123,63,228,.2);
}

.laser-steps .num {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    background: var(--laser-gradient);
    color: #fff;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(123,63,228,.3);
    transition: var(--transition);
}

.laser-steps .step:hover .num {
    transform: scale(1.15);
}

.laser-steps h6 {
    font-size: 1.05rem;
    font-weight: 700;
}

/* ========================================
   AREAS SECTION
   ======================================== */

.laser-section .text-laser {
    color: var(--laser-primary) !important;
    transition: var(--transition);
}

.laser-section .d-flex:hover .text-laser {
    transform: scale(1.1);
}

/* ========================================
   FAQ SECTION
   ======================================== */

.accordion-item {
    border: 1px solid #e8e8e8 !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    margin-bottom: 1rem !important;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(123,63,228,.2) !important;
}

.accordion-button {
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    transition: var(--transition);
}

.accordion-button:not(.collapsed) {
    background: var(--laser-gradient-soft);
    color: var(--laser-primary);
    font-weight: 700;
}

.accordion-body {
    padding: 1.5rem;
    line-height: 1.8;
    color: #555;
    font-size: 1rem;
}

/* ========================================
   CTA SECTION
   ======================================== */

.laser-cta {
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(123,63,228,.15);
    box-shadow: var(--shadow-lg);
    padding: 3rem 2rem;
    transition: var(--transition);
}

.laser-cta:hover {
    border-color: rgba(123,63,228,.3);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.laser-cta h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 800;
    color: var(--laser-dark);
}

.laser-cta .btn-appointment {
    background: var(--laser-gradient);
    color: #fff;
    border: 0;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    box-shadow: 0 8px 24px rgba(123,63,228,.3);
    transition: var(--transition);
}

.laser-cta .btn-appointment:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(123,63,228,.4);
}

.laser-cta .btn-outline {
    border: 2px solid rgba(123,63,228,.3);
    color: var(--laser-primary);
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    background: #fff;
}

.laser-cta .btn-outline:hover {
    background: var(--laser-primary);
    color: #fff;
    border-color: var(--laser-primary);
    transform: translateY(-3px);
}

/* ========================================
   MOBILE RESPONSIVE (max-width: 768px)
   ======================================== */

@media (max-width: 768px) {
    /* Hero adjustments */
    .laser-hero {
        text-align: center;
        padding: 3rem 0 3.5rem;
        min-height: auto;
    }

    .laser-hero h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .laser-hero .lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .laser-hero .cta-group {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .laser-hero .cta-group .btn {
        width: 100%;
        max-width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .badge-soft-primary {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
        margin: 0.25rem;
    }

    .laser-img {
        margin-top: 1.5rem;
    }

    /* Sections */
    .laser-section {
        padding: 3rem 0;
    }

    .laser-section h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    /* Offer banner */
    .offer-banner {
        padding: 2rem 0 3rem;
        margin-top: 0;
    }

    .offer-banner img {
        border-radius: var(--radius-md);
        margin-bottom: 1.25rem;
    }

    .offer-banner .offer-note {
        width: 100%;
        text-align: center;
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .offer-banner .offer-note br {
        display: block;
    }

    /* Video */
    .video-intro-section {
        padding: 3rem 0;
    }

    .video-wrapper {
        border-radius: var(--radius-md);
        border-width: 2px;
    }

    .video-wrapper video {
        max-height: 350px;
        border-radius: var(--radius-sm);
    }

    /* Gallery */
    .gallery-section {
        padding: 3rem 0;
    }

    .gallery-item {
        aspect-ratio: 4/3;
        margin-bottom: 1rem;
        border-radius: var(--radius-md);
    }

    /* Features */
    .laser-feature {
        padding: 1.75rem 1.25rem;
        margin-bottom: 1rem;
    }

    .laser-feature .icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    /* Steps */
    .laser-steps .step {
        padding: 1.75rem 1.25rem;
        margin-bottom: 1rem;
    }

    .laser-steps .num {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    /* CTA */
    .laser-cta {
        padding: 2rem 1.5rem;
        border-radius: var(--radius-lg);
    }

    .laser-cta h3 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .laser-cta .btn-appointment,
    .laser-cta .btn-outline {
        width: 100%;
        margin-bottom: 0.75rem;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    /* Accordion */
    .accordion-button {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
    }

    .accordion-body {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
}

/* ========================================
   DESKTOP OPTIMIZATIONS (min-width: 992px)
   ======================================== */

@media (min-width: 992px) {
    .laser-hero .laser-img {
        max-width: 85%;
        margin-right: auto;
    }

    .offer-banner img {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .video-wrapper video {
        max-height: 550px;
    }
}

/* ========================================
   TABLET OPTIMIZATIONS (768px - 991px)
   ======================================== */

@media (min-width: 769px) and (max-width: 991px) {
    .laser-section {
        padding: 3.5rem 0;
    }

    .laser-hero {
        padding: 3.5rem 0 4rem;
    }

    .gallery-item {
        aspect-ratio: 1;
    }
}

/* ========================================
   PRINT & ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
.btn:focus,
.accordion-button:focus {
    outline: 3px solid rgba(123,63,228,.4);
    outline-offset: 2px;
}

/* Phone number display */
.phone-number-display {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(123,63,228,.08) 0%, rgba(180,76,255,.08) 100%);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(123,63,228,.2);
    box-shadow: 0 8px 20px rgba(123,63,228,.12);
    transition: var(--transition);
}

.phone-number-display:hover {
    border-color: var(--laser-primary);
    box-shadow: 0 12px 28px rgba(123,63,228,.2);
    transform: translateY(-2px);
}

.phone-number-display i {
    color: var(--laser-primary);
    font-size: 1.5rem;
}

.phone-link {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--laser-dark);
    text-decoration: none;
    letter-spacing: 0.5px;
    direction: ltr;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--laser-primary);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .phone-number-display {
        padding: 0.875rem 1.5rem;
        width: 100%;
        max-width: 280px;
    }
    
    .phone-number-display i {
        font-size: 1.25rem;
    }
    
    .phone-link {
        font-size: 1.25rem;
    }
}
