﻿:root {
    --orange-primary: #ff8c00;
    --orange-dark: #e94e1b;
    --orange-glow: rgba(255, 140, 0, 0.3);
    --gray-900: #1a1a1a;
    --gray-800: #2d2d2d;
    --gray-700: #404040;
    --gray-600: #525252;
    --gray-500: #6b6b6b;
    --gray-400: #8a8a8a;
    --gray-300: #a3a3a3;
    --gray-200: #d4d4d4;
    --gray-100: #f0f0f0;
    --gray-50: #f8f8f8;
    --surface: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #525252;
    --text-muted: #8a8a8a;
    --border: #d4d4d4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-primary);
    background-color: var(--surface);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.page-wrapper {
    width: 100%;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Header */
.subheader {
    text-align: center;
    margin-bottom: 3rem;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.header-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.header-subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Carousel Container */
.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.carousel-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

/* Business Cards */
.business-card {
    flex: 0 0 calc(100% - 2rem);
    background: var(--surface);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .business-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .business-card:hover {
        border-color: var(--orange-primary);
        box-shadow: 0 10px 40px rgba(255, 140, 0, 0.2);
        transform: translateY(-8px);
    }

        .business-card:hover::before {
            left: 100%;
        }

.business-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
    transition: all 0.3s ease;
}

.business-card:hover .business-icon {
    transform: scale(1.1) rotate(5deg);
}

.business-icon svg {
    width: 50px;
    height: 50px;
    stroke: white;
    stroke-width: 2;
}

.business-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--gray-100);
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.business-card:hover .business-badge {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    color: white;
}

.business-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.business-description {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.business-features {
    list-style: none;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

    .business-features li {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 0.75rem 0;
        font-size: 0.9375rem;
        color: var(--text-secondary);
    }

        .business-features li svg {
            width: 18px;
            height: 18px;
            stroke: var(--orange-primary);
            flex-shrink: 0;
        }

.business-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

    .business-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(233, 78, 27, 0.5);
    }

    .business-cta svg {
        width: 20px;
        height: 20px;
        transition: transform 0.3s ease;
    }

    .business-cta:hover svg {
        transform: translateX(4px);
    }

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--surface);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

    .carousel-nav:hover {
        border-color: var(--orange-primary);
        background: var(--orange-primary);
        box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    }

    .carousel-nav svg {
        width: 24px;
        height: 24px;
        stroke: var(--text-primary);
        transition: stroke 0.3s ease;
    }

    .carousel-nav:hover svg {
        stroke: white;
    }

    .carousel-nav.prev {
        left: 0;
    }

    .carousel-nav.next {
        right: 0;
    }

    .carousel-nav:disabled {
        opacity: 0.3;
        cursor: not-allowed;
        pointer-events: none;
    }

/* Dots Indicator */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--gray-300);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .dot.active {
        background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
        width: 40px;
        border-radius: 6px;
    }

    .dot:hover {
        background: var(--orange-primary);
    }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .carousel-wrapper {
        padding: 0 1rem;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

        .carousel-nav svg {
            width: 20px;
            height: 20px;
        }

    .business-card {
        padding: 2rem 1.5rem;
    }

    .business-icon {
        width: 80px;
        height: 80px;
    }

        .business-icon svg {
            width: 40px;
            height: 40px;
        }

    .header-title {
        font-size: 1.5rem;
    }

    .business-title {
        font-size: 1.5rem;
    }
}

/* Desktop - Show 3 cards */
@media (min-width: 1024px) {
    .carousel-track {
        gap: 1.5rem;
    }

    .business-card {
        flex: 0 0 calc(33.333% - 1rem);
    }

    .carousel-nav {
        display: none;
    }

    .carousel-dots {
        display: none;
    }

    .carousel-container {
        overflow: visible;
    }
}

/* Tablet - Show 2 cards */
@media (min-width: 768px) and (max-width: 1023px) {
    .business-card {
        flex: 0 0 calc(50% - 1rem);
    }
}
