/* ============================================
   Landing Page Sections - Fun & Colorful Theme
   ============================================ */

/* Color Palette */
:root {
    --color-primary: #3d8cfa;
    --color-accent: #ff7f0e;
    --color-light-blue: #e3f2fd;
    --color-light-orange: #fff3e0;
    --color-light-purple: #f3e5f5;
    --color-light-green: #e8f5e9;
    --color-light-pink: #fce4ec;
}

/* ============================================
   SERVICE AREA SECTION
   ============================================ */
.service-area-section {
    background: linear-gradient(135deg, var(--color-light-blue) 0%, var(--color-light-orange) 100%);
/*    border-top: 4px dashed var(--color-accent);
    border-bottom: 4px dashed var(--color-primary);*/
    position: relative;
}

.service-area-section::before {
    content: '🎈';
    position: absolute;
    font-size: 3rem;
    top: 10px;
    left: 30px;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

.service-area-section::after {
    content: '🎈';
    position: absolute;
    font-size: 2.5rem;
    bottom: 20px;
    right: 40px;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite 0.5s;
}

/* ============================================
   TRUST & SAFETY SECTION
   ============================================ */
.trust-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    border: 3px solid var(--color-primary);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(61, 140, 250, 0.1);
}

.trust-card:nth-child(1) {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, white 0%, var(--color-light-blue) 100%);
}

.trust-card:nth-child(2) {
    border-color: var(--color-accent);
    background: linear-gradient(135deg, white 0%, var(--color-light-orange) 100%);
}

.trust-card:nth-child(3) {
    border-color: #10b981;
    background: linear-gradient(135deg, white 0%, var(--color-light-green) 100%);
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.trust-card h3 {
    font-weight: 700;
    color: #333;
    margin-bottom: 0.75rem;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works-section {
    background: linear-gradient(to right, var(--color-light-purple) 0%, var(--color-light-pink) 100%);
    position: relative;
}

.how-it-works-step {
    text-align: center;
    position: relative;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--color-primary);
    transition: all 0.3s ease;
}

.how-it-works-step:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(61, 140, 250, 0.2);
}

.how-it-works-step::before {
    content: attr(data-step);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.25rem;
    margin: 0 auto 0.75rem;
}

.how-it-works-step h3 {
    font-weight: 700;
    color: #333;
    font-size: 0.95rem;
}

.how-it-works-step p {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Connector lines between steps */
@media (min-width: 768px) {
    .how-it-works-section .row {
        position: relative;
    }

    .how-it-works-section .col-md-3:not(:last-child)::after {
        content: '→';
        position: absolute;
        right: -15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.5rem;
        color: var(--color-accent);
        font-weight: bold;
    }
}

/* ============================================
   PRICING & INCLUDED SECTION
   ============================================ */
.pricing-section {
    background: linear-gradient(135deg, var(--color-light-green) 0%, var(--color-light-blue) 100%);
}

.pricing-section ul {
    list-style: none;
}

.pricing-section li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.95rem;
}

.pricing-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #10b981;
    font-size: 1.25rem;
}

/* ============================================
   OCCASIONS SECTION
   ============================================ */
.occasions-section {
    background: linear-gradient(135deg, var(--color-light-orange) 0%, var(--color-light-pink) 100%);
}

.occasion-card {
    background: white;
    border-radius: 15px;
    padding: 1.75rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.occasion-card:hover {
    transform: translateY(-8px) rotate(2deg);
    border-color: var(--color-accent);
    box-shadow: 0 12px 30px rgba(255, 127, 14, 0.2);
}

.occasion-card h3 {
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.occasion-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.occasion-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.7;
}

/* ============================================
   FEATURED INVENTORY SECTION
   ============================================ */
.featured-inventory-section {
    background: linear-gradient(135deg, white 0%, var(--color-light-blue) 100%);
    position: relative;
}

.featured-inventory-section h2 {
    color: var(--color-primary);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.featured-inventory-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(to right, var(--color-primary), var(--color-accent));
    border-radius: 2px;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
    background: linear-gradient(135deg, var(--color-light-purple) 0%, var(--color-light-blue) 100%);
    padding: 3rem 0;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--color-accent);
    transition: all 0.3s ease;
    position: relative;
}

.review-card:nth-child(1) {
    border-left-color: var(--color-primary);
}

.review-card:nth-child(2) {
    border-left-color: var(--color-accent);
}

.review-card:nth-child(3) {
    border-left-color: #10b981;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.review-card p:first-child {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.review-card p:last-child {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.85rem;
}

.review-card::before {
    content: '★ ★ ★ ★ ★';
    display: block;
    color: #ffc107;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: linear-gradient(135deg, var(--color-light-green) 0%, var(--color-light-orange) 100%);
}

.faq-section h2 {
    color: var(--color-primary);
    font-weight: 700;
}

.faq-item {
    /*background: white;*/
    border-radius: 8px;
    padding: 1rem 0;
    /*border-bottom: 2px dotted var(--color-accent);*/
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* ============================================
   PRIMARY CTA SECTION
   ============================================ */
.primary-cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    position: relative;
    overflow: hidden;
}

.primary-cta-section::before,
.primary-cta-section::after {
    content: '🎈';
    position: absolute;
    font-size: 4rem;
    opacity: 0.2;
    animation: float 4s ease-in-out infinite;
}

.primary-cta-section::before {
    top: 20px;
    left: 30px;
}

.primary-cta-section::after {
    bottom: 30px;
    right: 40px;
    animation-delay: 0.5s;
}

.primary-cta-section h2 {
    font-weight: 700;
    font-size: 2rem;
    color: white;
}

.primary-cta-section p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
}

.primary-cta-section .btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.primary-cta-section .btn-light {
    background: white;
    color: var(--color-primary);
    border: none;
}

.primary-cta-section .btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

.primary-cta-section .btn-outline-light {
    border-width: 2px;
    border-color: white;
    color: white;
}

.primary-cta-section .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

/* ============================================
   LOCAL SEO FOOTER SECTION
   ============================================ */
.local-seo-footer-section {
    background: linear-gradient(135deg, var(--color-light-blue) 0%, var(--color-light-purple) 100%);
    border-top: 4px dashed var(--color-primary);
}

.local-seo-footer-section a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.local-seo-footer-section a:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

.local-seo-footer-section h2,
.local-seo-footer-section h3 {
    color: var(--color-primary);
    font-weight: 700;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
    .how-it-works-section .col-md-3:not(:last-child)::after {
        display: none;
    }

    .primary-cta-section h2 {
        font-size: 1.5rem;
    }

    .primary-cta-section .d-flex {
        flex-direction: column;
    }

    .review-card,
    .occasion-card,
    .trust-card {
        margin-bottom: 1rem;
    }
}
