/*
 * BUSINESS CARD LANDING PAGE
 * Mobile-first, conversion-optimized design
 * For QR code traffic from business cards
 * Version: 1.0.0
 */

/* ========================
   VARIABLES
   ======================== */
:root {
    --bc-primary: #ff675b;
    --bc-dark: #3c3c3c;
    --bc-gray: #6c757d;
    --bc-light: #f8f9fa;
    --bc-white: #ffffff;
    --bc-black: #000000;

    --bc-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================
   BASE STYLES
   ======================== */
.business-card-page {
    background: var(--bc-white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--bc-dark);
    line-height: 1.6;
}

/* ========================
   HERO SECTION
   ======================== */
.bc-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #3c3c3c 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.bc-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255, 103, 91, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.bc-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.bc-logo {
    margin-bottom: 40px;
}

.bc-logo img {
    max-width: 200px;
    height: auto;
}

.bc-company-name {
    font-size: 2rem;
    font-weight: 600;
    color: var(--bc-white);
    margin-bottom: 40px;
}

.bc-headline {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--bc-white);
    margin: 0 0 25px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.bc-accent {
    color: var(--bc-primary);
    font-weight: 400;
}

.bc-subheadline {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 40px 0;
    line-height: 1.7;
}

.bc-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================
   BUTTONS
   ======================== */
.bc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--bc-transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.bc-btn-primary {
    background: var(--bc-primary);
    color: var(--bc-white);
    border-color: var(--bc-primary);
}

.bc-btn-primary:hover {
    background: #e55a4e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 103, 91, 0.4);
}

.bc-btn-secondary {
    background: transparent;
    color: var(--bc-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.bc-btn-secondary:hover {
    background: var(--bc-white);
    color: var(--bc-dark);
    border-color: var(--bc-white);
}

.bc-btn-white {
    background: var(--bc-white);
    color: var(--bc-dark);
    border-color: var(--bc-white);
}

.bc-btn-white:hover {
    background: transparent;
    color: var(--bc-white);
    border-color: var(--bc-white);
}

.bc-btn-outline-white {
    background: transparent;
    color: var(--bc-white);
    border-color: var(--bc-white);
}

.bc-btn-outline-white:hover {
    background: var(--bc-white);
    color: var(--bc-dark);
}

/* ========================
   STATS SECTION
   ======================== */
.bc-stats {
    padding: 60px 0;
    background: var(--bc-light);
    border-bottom: 1px solid #e0e0e0;
}

.bc-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.bc-stat-item {
    padding: 20px;
}

.bc-stat-value {
    font-size: 3rem;
    font-weight: 300;
    color: var(--bc-primary);
    margin-bottom: 10px;
    line-height: 1;
}

.bc-stat-label {
    font-size: 0.9375rem;
    color: var(--bc-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ========================
   SECTION HEADERS
   ======================== */
.bc-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.bc-section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--bc-dark);
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
}

.bc-section-subtitle {
    font-size: 1.125rem;
    color: var(--bc-gray);
    margin: 0;
}

.bc-section-cta {
    text-align: center;
    margin-top: 40px;
}

.bc-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bc-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--bc-transition);
}

.bc-link-arrow:hover {
    gap: 12px;
    color: #e55a4e;
}

/* ========================
   SERVICES SECTION
   ======================== */
.bc-services {
    padding: 80px 0;
    background: var(--bc-white);
}

.bc-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.bc-service-card {
    background: var(--bc-white);
    padding: 40px 30px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    transition: var(--bc-transition);
    text-decoration: none;
    display: block;
    color: inherit;
}

.bc-service-card:hover {
    border-color: var(--bc-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 103, 91, 0.15);
    text-decoration: none;
}

.bc-service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 103, 91, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--bc-primary);
    font-size: 1.75rem;
}

.bc-service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bc-dark);
    margin: 0 0 10px 0;
}

.bc-service-tagline {
    font-size: 1rem;
    color: var(--bc-primary);
    margin: 0 0 15px 0;
    font-weight: 500;
}

.bc-service-desc {
    font-size: 1rem;
    color: var(--bc-gray);
    line-height: 1.6;
    margin: 0;
}

/* ========================
   PORTFOLIO SECTION
   ======================== */
.bc-portfolio {
    padding: 80px 0;
    background: var(--bc-light);
}

.bc-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bc-portfolio-item {
    display: block;
    background: var(--bc-white);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: var(--bc-transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.bc-portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.bc-portfolio-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bc-light);
}

.bc-portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bc-portfolio-item:hover .bc-portfolio-image img {
    transform: scale(1.05);
}

.bc-portfolio-info {
    padding: 25px;
}

.bc-portfolio-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bc-dark);
    margin: 0 0 8px 0;
}

.bc-portfolio-company {
    font-size: 0.9375rem;
    color: var(--bc-primary);
    margin: 0;
    font-weight: 500;
}

/* ========================
   TESTIMONIAL CAROUSEL SECTION
   ======================== */
.bc-testimonial {
    padding: 80px 0;
    background: linear-gradient(135deg, #3c3c3c 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.bc-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 103, 91, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.bc-testimonial-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto 30px;
    cursor: pointer;
    z-index: 2;
}

.bc-testimonial-card {
    text-align: center;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.bc-testimonial-card.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.bc-stars {
    margin-bottom: 25px;
    color: var(--bc-primary);
    font-size: 1.25rem;
}

.bc-stars i {
    margin: 0 3px;
}

.bc-stars i.inactive {
    opacity: 0.3;
}

.bc-quote {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--bc-white);
    font-style: italic;
    margin: 0 0 30px 0;
    font-weight: 300;
}

.bc-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.bc-author strong {
    font-size: 1.125rem;
    color: var(--bc-white);
    font-weight: 600;
}

.bc-author span {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Carousel Navigation Dots */
.bc-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.bc-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.bc-carousel-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.bc-carousel-dot.active {
    background: var(--bc-primary);
    width: 30px;
    border-radius: 6px;
}

/* ========================
   ABOUT SECTION
   ======================== */
.bc-about {
    padding: 80px 0;
    background: var(--bc-white);
}

.bc-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bc-about-title {
    font-size: 2.25rem;
    font-weight: 300;
    color: var(--bc-dark);
    margin: 0 0 25px 0;
    letter-spacing: -0.5px;
}

.bc-about-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--bc-gray);
    margin: 0 0 20px 0;
}

.bc-about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.bc-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--bc-dark);
}

.bc-feature i {
    color: var(--bc-primary);
    font-size: 1.25rem;
}

.bc-about-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bc-light);
}

.bc-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================
   CONTACT SECTION
   ======================== */
.bc-contact {
    padding: 80px 0;
    background: var(--bc-light);
}

.bc-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.bc-contact-title {
    font-size: 2.25rem;
    font-weight: 300;
    color: var(--bc-dark);
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.bc-contact-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--bc-gray);
    margin: 0 0 40px 0;
}

.bc-contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.bc-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.bc-contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bc-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bc-white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.bc-contact-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bc-contact-label {
    font-size: 0.875rem;
    color: var(--bc-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.bc-contact-value {
    font-size: 1.125rem;
    color: var(--bc-dark);
    font-weight: 600;
    text-decoration: none;
    transition: var(--bc-transition);
}

.bc-contact-value:hover {
    color: var(--bc-primary);
}

.bc-trust-badges {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 103, 91, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--bc-primary);
}

.bc-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: var(--bc-dark);
    font-weight: 500;
}

.bc-trust-item i {
    color: var(--bc-primary);
    font-size: 1.125rem;
}

.bc-contact-form {
    background: var(--bc-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.bc-form-wrapper {
    width: 100%;
}

/* ========================
   FINAL CTA
   ======================== */
.bc-final-cta {
    padding: 100px 0 200px;
    background: linear-gradient(135deg, #3c3c3c 0%, #2d2d2d 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bc-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 103, 91, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.bc-final-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.bc-final-title {
    font-size: 2.75rem;
    font-weight: 300;
    color: var(--bc-white);
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.bc-final-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 40px 0;
}

.bc-final-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================
   RESPONSIVE DESIGN
   ======================== */

/* Tablet */
@media (max-width: 991px) {
    .bc-headline {
        font-size: 2rem;
    }

    .bc-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .bc-services-grid {
        grid-template-columns: 1fr;
    }

    .bc-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .bc-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bc-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .bc-hero {
        padding: 100px 0 60px;
    }

    .bc-headline {
        font-size: 1.75rem;
    }

    .bc-subheadline {
        font-size: 1rem;
    }

    .bc-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .bc-btn {
        width: 100%;
        justify-content: center;
    }

    .bc-stats {
        padding: 40px 0;
    }

    .bc-stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bc-stat-value {
        font-size: 2.5rem;
    }

    .bc-section-title {
        font-size: 2rem;
    }

    .bc-section-subtitle {
        font-size: 1rem;
    }

    .bc-services,
    .bc-portfolio,
    .bc-about,
    .bc-contact {
        padding: 60px 0;
    }

    .bc-service-card {
        padding: 30px 25px;
    }

    .bc-service-title {
        font-size: 1.25rem;
    }

    .bc-portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bc-testimonial {
        padding: 60px 0;
    }

    .bc-quote {
        font-size: 1.25rem;
    }

    .bc-about-title,
    .bc-contact-title {
        font-size: 1.75rem;
    }

    .bc-about-text,
    .bc-contact-text {
        font-size: 1rem;
    }

    .bc-about-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bc-contact-form {
        padding: 30px 25px;
    }

    .bc-trust-badges {
        flex-direction: column;
        gap: 12px;
    }

    .bc-final-cta {
        padding: 80px 0 180px;
    }

    .bc-final-title {
        font-size: 2rem;
    }

    .bc-final-text {
        font-size: 1.125rem;
    }

    .bc-final-buttons {
        flex-direction: column;
        width: 100%;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .bc-hero {
        padding: 80px 0 50px;
    }

    .bc-headline {
        font-size: 1.5rem;
    }

    .bc-logo img {
        max-width: 150px;
    }

    .bc-section-title {
        font-size: 1.75rem;
    }

    .bc-service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .bc-stat-value {
        font-size: 2rem;
    }

    .bc-quote {
        font-size: 1.125rem;
    }
}

/* ========================
   PRINT STYLES
   ======================== */
@media print {
    .bc-hero,
    .bc-final-cta,
    .bc-contact-form {
        display: none;
    }
}
