/* Buberka Smart - Design System */

:root {
    /* Buberkasmart Brand Colors */
    --primary-color: #FF6B35;        /* Buberkasmart Orange */
    --primary-dark: #E55A2B;
    --primary-light: #FF8A5B;
    
    --secondary-color: #6B7280;      /* Modern Gray */
    --secondary-dark: #4B5563;
    --secondary-light: #9CA3AF;
    
    --accent-color: #10B981;         /* Success Green */
    --accent-dark: #059669;
    --accent-light: #34D399;
    
    /* Semantic Colors */
    --success-color: #10b981;        /* Emerald */
    --success-light: #34d399;
    --danger-color: #ef4444;         /* Red */
    --warning-color: #f59e0b;        /* Amber */
    --info-color: #06b6d4;           /* Cyan */
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Typography */
    --font-family-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-family-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;   /* 4px */
    --spacing-sm: 0.5rem;    /* 8px */
    --spacing-md: 1rem;      /* 16px */
    --spacing-lg: 1.5rem;    /* 24px */
    --spacing-xl: 2rem;      /* 32px */
    --spacing-2xl: 3rem;     /* 48px */
    
    /* Border Radius */
    --radius-sm: 0.375rem;   /* 6px */
    --radius-md: 0.5rem;     /* 8px */
    --radius-lg: 0.75rem;    /* 12px */
    --radius-xl: 1rem;       /* 16px */
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-primary);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    color: var(--gray-800);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-900);
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--gray-600);
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-family: var(--font-family-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--gray-700) !important;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Cards */
.card {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.card-header {
    border: none;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    font-weight: 600;
    padding: var(--spacing-lg);
}

.card-body {
    padding: var(--spacing-lg);
}

/* Module Cards */
.module-card {
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
}

.module-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.module-card .card-header {
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-md);
}

.module-card .card-header h5 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
}

/* Review Module */
.review-module .card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

/* Menu Module */
.menu-module .card-header {
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    color: var(--white);
}

/* Ordering Module */
.ordering-module .card-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: var(--white);
}

/* Buttons */
.btn {
    border-radius: var(--radius-md);
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-lg);
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e40af 100%);
    color: var(--white);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    color: var(--white);
}

.btn-success:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: var(--white);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

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

/* Shop Header */
.shop-header {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-2xl);
}

.shop-header .card-body {
    padding: var(--spacing-2xl);
}

.shop-logo-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}

.shop-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
}

.shop-slug {
    font-family: 'Monaco', 'Menlo', monospace;
    background: var(--gray-100);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Alerts */
.alert {
    border: none;
    border-radius: var(--radius-md);
    padding: var(--spacing-md) var(--spacing-lg);
}

.alert-info {
    background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);
    color: var(--info-color);
    border-left: 4px solid var(--info-color);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--gray-300);
    border-top: 1px solid var(--gray-700);
    margin-top: auto;
}

footer p {
    margin-bottom: var(--spacing-xs);
}

footer small {
    color: var(--gray-400);
}

/* Responsive Design */
@media (max-width: 768px) {
    .shop-title {
        font-size: 2rem;
    }
    
    .shop-header .card-body {
        padding: var(--spacing-xl);
    }
    
    .shop-logo-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .card {
        margin-bottom: var(--spacing-lg);
    }
    
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.5rem; }
}

@media (max-width: 576px) {
    .shop-title {
        font-size: 1.75rem;
    }
    
    .module-card .card-header {
        padding: var(--spacing-md);
    }
    
    .module-card .card-body {
        padding: var(--spacing-md);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shadow-soft {
    box-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
}

/* 2026 Modern Hero Section - Full Width */
.hero-section-full {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(51, 65, 85, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text-container {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #e2e8f0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #FF6B35 0%, #10B981 50%, #FF6B35 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite, textPulse 2s ease-in-out infinite alternate;
    position: relative;
    cursor: default;
    transition: all 0.3s ease;
}

.gradient-text:hover {
    animation-duration: 1s, 0.5s;
    transform: scale(1.1);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes textPulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
    }
    100% {
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    color: white;
}

.btn-hero-secondary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-hero-secondary:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #e8851a 100%);
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, #FF6B35);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Modern Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 0;
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-icon.orange {
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
}

.feature-icon.gray {
    background: linear-gradient(135deg, #6B7280, #4B5563);
}

.feature-icon.green {
    background: linear-gradient(135deg, #10B981, #059669);
}

.feature-icon.google {
    background: linear-gradient(135deg, #4285F4, #1a73e8);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Step Cards */
.step-card {
    padding: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.step-number.orange {
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
}

.step-number.gray {
    background: linear-gradient(135deg, #6B7280, #4B5563);
}

.step-number.green {
    background: linear-gradient(135deg, #10B981, #059669);
}

.step-title {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* Demo Buttons */
.demo-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.demo-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    border-radius: 16px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 150px;
}

.demo-btn.orange {
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
}

.demo-btn.gray {
    background: linear-gradient(135deg, #6B7280, #4B5563);
}

.demo-btn.green {
    background: linear-gradient(135deg, #10B981, #059669);
}

.demo-btn:hover {
    transform: translateY(-5px);
    color: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.demo-btn i {
    font-size: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .glass-card {
        padding: 2rem;
    }
    
    .demo-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .demo-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}
/* 2026 Modern Shop Detail Styles */

/* Shop Hero Section */
.shop-hero-section {
    position: relative;
    min-height: 35vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.shop-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.shop-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem 0;
}

.shop-hero-container {
    animation: fadeInUp 1s ease-out;
}

.shop-logo-modern {
    margin-bottom: 1.5rem;
}

.shop-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.shop-logo-placeholder-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    color: #64748b;
    font-size: 2rem;
}

.shop-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.shop-slug-modern {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: #FF6B35;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.shop-quick-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-shop-primary {
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.9rem;
}

.btn-shop-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    color: white;
}

.btn-shop-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
}

.btn-shop-secondary:hover {
    background: white;
    transform: translateY(-2px);
    color: #374151;
}

.btn-shop-review {
    background: linear-gradient(135deg, #4285f4, #3367d6);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.9rem;
}

.btn-shop-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
    color: white;
}

/* Modern Module Cards */
.modern-module-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.modern-module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #10B981);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-module-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.modern-module-card:hover::before {
    opacity: 1;
}

.module-icon-container {
    margin-bottom: 1.5rem;
}

.module-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.module-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.modern-module-card:hover .module-icon::before {
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

.module-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.module-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.module-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-module-primary {
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
}

.btn-module-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    color: white;
}

.btn-module-secondary {
    background: rgba(107, 114, 128, 0.1);
    color: #374151;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(107, 114, 128, 0.2);
    width: 100%;
}

.btn-module-secondary:hover {
    background: rgba(107, 114, 128, 0.15);
    color: #374151;
}

.module-info {
    font-size: 0.875rem;
    color: #64748b;
    text-align: center;
    margin-top: 0.5rem;
}

/* Empty State */
.empty-state-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    margin: 0 auto;
}

.empty-state-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FF6B35, #10B981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
}

.empty-state-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.empty-state-description {
    color: #64748b;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
}

.contact-info {
    flex: 1;
}

.contact-label {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.contact-value {
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    font-size: 1rem;
}

.contact-value:hover {
    color: #FF6B35;
}

/* Responsive Design */
@media (max-width: 768px) {
    .shop-hero-section {
        min-height: 30vh;
    }
    
    .shop-hero-content {
        padding: 1.5rem 0;
    }
    
    .shop-hero-title {
        font-size: 2rem;
    }
    
    .shop-logo-img,
    .shop-logo-placeholder-modern {
        width: 70px;
        height: 70px;
    }
    
    .shop-logo-placeholder-modern {
        font-size: 1.5rem;
    }
    
    .shop-slug-modern {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
        margin-bottom: 1rem;
    }
    
    .shop-quick-actions {
        gap: 0.5rem;
    }
    
    .btn-shop-primary,
    .btn-shop-secondary,
    .btn-shop-review {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .modern-module-card {
        padding: 1.5rem;
    }
    
    .module-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .empty-state-card {
        padding: 2rem;
    }
    
    .empty-state-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}
/* WhatsApp Button Styles */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    color: white !important;
    border: none !important;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3) !important;
}
/* Effective Module Cards - Like the screenshot */
.effective-module-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.effective-module-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.effective-card-header {
    margin-bottom: 2rem;
}

.effective-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.effective-card-subtitle {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.effective-card-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Effective Button Styles */
.btn-effective-google {
    background: #4285F4;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
}

.btn-effective-google:hover {
    background: #3367D6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
}

.btn-effective-orange {
    background: #FF6B35;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
}

.btn-effective-orange:hover {
    background: #E55A2B;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-effective-whatsapp {
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
}

.btn-effective-whatsapp:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-effective-secondary {
    background: #f8fafc;
    color: #64748b;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    width: 100%;
}

.btn-effective-secondary:hover {
    background: #f1f5f9;
    color: #475569;
    border-color: #cbd5e1;
}

.effective-card-info {
    font-size: 0.9rem;
    color: #64748b;
    text-align: center;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .effective-module-card {
        padding: 2rem 1.5rem;
        min-height: 280px;
    }
    
    .effective-card-title {
        font-size: 1.25rem;
    }
    
    .btn-effective-google,
    .btn-effective-orange,
    .btn-effective-whatsapp {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}
/* Demo Button Small Text */
.demo-btn small {
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 400;
}
/* Product/Service Cards */
.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.product-card.coming-soon {
    opacity: 0.6;
    border: 2px dashed #e2e8f0;
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 2rem;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-description {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FF6B35;
    text-align: right;
}

/* Floating Action Buttons */
.floating-review-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.floating-whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    animation: fabPulse 2s infinite;
}

.fab-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    color: white;
}

.fab-review {
    background: linear-gradient(135deg, #4285F4, #3367D6);
}

.fab-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

@keyframes fabPulse {
    0% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.fab-review {
    animation-name: fabPulseBlue;
}

@keyframes fabPulseBlue {
    0% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(66, 133, 244, 0.7);
    }
    70% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 0 10px rgba(66, 133, 244, 0);
    }
    100% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(66, 133, 244, 0);
    }
}

/* Main Content Section */
.main-content-section {
    margin-bottom: 3rem;
}

/* Responsive Design for FABs */
@media (max-width: 768px) {
    .floating-review-btn {
        bottom: 15px;
        left: 15px;
    }
    
    .floating-whatsapp-btn {
        bottom: 15px;
        right: 15px;
    }
    
    .fab-btn {
        width: 55px;
        height: 55px;
        font-size: 1.25rem;
    }
    
    .product-card {
        margin-bottom: 1rem;
    }
    
    .product-image,
    .product-image-placeholder {
        height: 180px;
    }
    
    .product-info {
        padding: 1.25rem;
    }
}
/* Review Page Styles */
.review-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    background: linear-gradient(135deg, #4285F4 0%, #3367D6 100%);
}

.review-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.review-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.review-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.review-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.review-hint-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.review-hint-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.review-hint-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.review-hint-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.review-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-review-google {
    background: white;
    color: #4285F4;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    min-width: 200px;
}

.btn-review-google:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: #4285F4;
}

.btn-review-feedback {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    min-width: 200px;
}

.btn-review-feedback:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: white;
}

/* Feedback Form */
.feedback-form-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
}

.feedback-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.feedback-form-subtitle {
    color: #64748b;
    margin: 0;
}

.rating-stars {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.rating-stars i {
    font-size: 2rem;
    color: #e2e8f0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rating-stars i:hover,
.rating-stars i.active {
    color: #fbbf24;
    transform: scale(1.1);
}

.form-control {
    border-radius: 12px;
    border: 2px solid #f1f5f9;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #4285F4;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

.btn-submit-feedback {
    background: linear-gradient(135deg, #4285F4, #3367D6);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-submit-feedback:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
    color: white;
}

/* Quick Actions */
.quick-actions-section {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    color: #374151;
    transition: all 0.3s ease;
    border: 2px solid #f1f5f9;
    height: 100%;
}

.quick-action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    color: #4285F4;
    border-color: #4285F4;
}

.quick-action-btn.whatsapp:hover {
    color: #25D366;
    border-color: #25D366;
}

.quick-action-btn i {
    font-size: 2rem;
}

.quick-action-btn span {
    font-weight: 600;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .review-hero-title {
        font-size: 2.25rem;
    }
    
    .review-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-review-google,
    .btn-review-feedback {
        width: 100%;
        max-width: 300px;
    }
    
    .feedback-form-card {
        padding: 2rem 1.5rem;
    }
    
    .rating-stars i {
        font-size: 1.75rem;
    }
    
    .quick-action-btn {
        padding: 1.25rem;
    }
    
    .quick-action-btn i {
        font-size: 1.75rem;
    }
}
/* FAB Hints */
.fab-hint {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    animation: hintPulse 3s infinite;
}

.fab-hint-left {
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
}

.fab-hint-right {
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
}

.fab-hint-arrow {
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    transform: translateY(-50%);
}

.fab-hint-left .fab-hint-arrow {
    right: -8px;
    border-left: 8px solid rgba(0, 0, 0, 0.8);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.fab-hint-right .fab-hint-arrow {
    left: -8px;
    border-right: 8px solid rgba(0, 0, 0, 0.8);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.floating-review-btn:hover .fab-hint,
.floating-whatsapp-btn:hover .fab-hint {
    opacity: 1;
    visibility: visible;
}

@keyframes hintPulse {
    0%, 70%, 100% {
        opacity: 0;
        visibility: hidden;
    }
    10%, 60% {
        opacity: 1;
        visibility: visible;
    }
}

/* Show hints initially for 5 seconds */
.fab-hint.show-initially {
    animation: showInitially 5s ease-in-out;
}

@keyframes showInitially {
    0%, 10% {
        opacity: 1;
        visibility: visible;
    }
    90%, 100% {
        opacity: 0;
        visibility: hidden;
    }
}

/* Mobile adjustments for hints */
@media (max-width: 768px) {
    .fab-hint {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .fab-hint-left {
        right: 70px;
    }
    
    .fab-hint-right {
        left: 70px;
    }
}
/* Simple Review Page Styles */
.simple-review-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.review-shop-info {
    margin-bottom: 3rem;
}

.review-shop-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.review-shop-logo-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    color: #64748b;
    font-size: 2rem;
}

.review-shop-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.review-question-card,
.review-flow-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    margin-bottom: 2rem;
}

.review-question-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.review-question-subtitle {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.review-choice-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-choice {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 150px;
}

.btn-liked {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
}

.btn-liked:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.3);
    color: white;
}

.btn-disliked {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
}

.btn-disliked:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.3);
    color: white;
}

.flow-header {
    text-align: center;
    margin-bottom: 2rem;
}

.flow-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.flow-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.flow-header p {
    color: #64748b;
    margin: 0;
}

.flow-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-google-review {
    background: #4285F4;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-google-review:hover {
    background: #3367D6;
    transform: translateY(-2px);
    color: white;
}

.btn-internal-review {
    background: rgba(107, 114, 128, 0.1);
    color: #374151;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.btn-internal-review:hover {
    background: rgba(107, 114, 128, 0.15);
    border-color: #d1d5db;
    color: #374151;
}

.complaint-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.complaint-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.complaint-option:hover {
    background: #f1f5f9;
    border-color: #e2e8f0;
}

.complaint-option input[type="checkbox"] {
    margin: 0;
}

.complaint-option input[type="checkbox"]:checked + span {
    font-weight: 600;
    color: #1e293b;
}

.btn-submit-complaint,
.btn-submit-review {
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit-complaint:hover,
.btn-submit-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    color: white;
}

.btn-back-menu {
    background: rgba(107, 114, 128, 0.1);
    color: #64748b;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.btn-back-menu:hover {
    background: rgba(107, 114, 128, 0.15);
    color: #475569;
}

/* Responsive */
@media (max-width: 768px) {
    .review-question-card,
    .review-flow-card {
        padding: 2rem 1.5rem;
    }
    
    .review-choice-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-choice {
        width: 100%;
        max-width: 250px;
    }
    
    .flow-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-google-review,
    .btn-internal-review {
        width: 100%;
        max-width: 300px;
    }
}
/* Review Button for Hero Section */
.btn-shop-review {
    background: #4285F4;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-shop-review:hover {
    background: #3367D6;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(66, 133, 244, 0.3);
    color: white;
}
/* Package Cards Styles */
.packages-section {
    padding: 4rem 0;
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.package-card.popular {
    border-color: #FF6B35;
    transform: scale(1.05);
    z-index: 10;
}

.package-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
    color: white;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: 2px solid white;
}

.package-header {
    text-align: center;
    padding: 1.5rem 1.5rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.package-card.basic .package-header {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.package-card.professional .package-header {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
}

.package-card.premium .package-header {
    background: linear-gradient(135deg, #374151 0%, #1F2937 100%);
}

.package-card.premium .package-name {
    color: #F9FAFB;
}

.package-card.premium .price-amount {
    color: #F9FAFB !important;
}

.package-card.premium .price-period {
    color: #D1D5DB;
}

.package-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.package-card.basic .package-icon {
    background: linear-gradient(135deg, #6B7280, #4B5563);
}

.package-card.professional .package-icon {
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
}

.package-card.premium .package-icon {
    background: linear-gradient(135deg, #374151, #1F2937);
}

.package-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.package-price {
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
}

.price-period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.price-note {
    font-size: 0.875rem;
    color: #10B981;
    font-weight: 600;
}

.package-features {
    padding: 2rem;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #374151;
}

.package-features li i {
    color: #10B981;
    font-size: 1rem;
    width: 16px;
    flex-shrink: 0;
}

.package-features li.feature-description {
    padding: 0 0 0.25rem 2rem;
    margin-top: -0.25rem;
}

.package-features li.feature-description small {
    font-size: 0.8rem;
    color: #6B7280;
    font-style: italic;
}

.package-footer {
    padding: 1.5rem 2rem 2rem;
}

.btn-package-basic,
.btn-package-professional,
.btn-package-premium {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-package-basic {
    background: linear-gradient(135deg, #6B7280, #4B5563);
    color: white;
}

.btn-package-basic:hover {
    background: linear-gradient(135deg, #4B5563, #374151);
    transform: translateY(-2px);
    color: white;
}

.btn-package-professional {
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
    color: white;
}

.btn-package-professional:hover {
    background: linear-gradient(135deg, #E55A2B, #DC2626);
    transform: translateY(-2px);
    color: white;
}

.btn-package-premium {
    background: linear-gradient(135deg, #374151, #1F2937);
    color: white;
}

.btn-package-premium:hover {
    background: linear-gradient(135deg, #1F2937, #111827);
    transform: translateY(-2px);
    color: white;
}

/* Package Benefits */
.package-benefits-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    font-weight: 500;
    color: #374151;
}

.benefit-item i {
    font-size: 1.25rem;
}

/* Package CTA */
.package-cta-card {
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
    color: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
}

.package-cta-card h4 {
    color: white;
    margin-bottom: 1rem;
}

.package-cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-whatsapp {
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-cta-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    color: white;
}

.btn-cta-phone {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-phone:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
}

/* Responsive Design for Packages */
@media (max-width: 768px) {
    .package-card.popular {
        transform: none;
    }
    
    .package-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .package-header {
        padding: 2rem 1.5rem 1rem;
    }
    
    .package-features {
        padding: 1.5rem;
    }
    
    .package-footer {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-whatsapp,
    .btn-cta-phone {
        width: 100%;
        max-width: 300px;
    }
}
/* NFC Benefits Section */
.nfc-benefits-section {
    padding: 2rem 0;
}

.nfc-use-case {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.nfc-use-case:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
    border-color: #FF6B35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.nfc-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.nfc-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.nfc-use-case:hover .nfc-icon::before {
    animation: shimmer 1.5s ease-in-out;
}

.nfc-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.nfc-description {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* NFC Highlight Box */
.nfc-highlight-box {
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.nfc-highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.nfc-highlight-title {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.nfc-highlight-text {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* NFC Card Visual */
.nfc-card-visual {
    position: relative;
    display: inline-block;
}

.nfc-card-visual i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 3;
}

.nfc-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.wave {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: nfcPulse 2s infinite;
}

.wave-1 {
    width: 60px;
    height: 60px;
    top: -30px;
    left: -30px;
    animation-delay: 0s;
}

.wave-2 {
    width: 80px;
    height: 80px;
    top: -40px;
    left: -40px;
    animation-delay: 0.3s;
}

.wave-3 {
    width: 100px;
    height: 100px;
    top: -50px;
    left: -50px;
    animation-delay: 0.6s;
}

@keyframes nfcPulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Responsive Design for NFC Section */
@media (max-width: 768px) {
    .nfc-benefits-section {
        padding: 1rem 0;
    }
    
    .nfc-use-case {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .nfc-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .nfc-highlight-box {
        padding: 1.5rem;
        text-align: center;
    }
    
    .nfc-card-visual i {
        font-size: 3rem;
    }
    
    .wave-1 {
        width: 50px;
        height: 50px;
        top: -25px;
        left: -25px;
    }
    
    .wave-2 {
        width: 70px;
        height: 70px;
        top: -35px;
        left: -35px;
    }
    
    .wave-3 {
        width: 90px;
        height: 90px;
        top: -45px;
        left: -45px;
    }
}
/* NFC Packages Button */
.btn-nfc-packages {
    background: rgba(255, 255, 255, 0.9);
    color: #FF6B35;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
}

.btn-nfc-packages:hover {
    background: white;
    color: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Mobile responsive for NFC button */
@media (max-width: 768px) {
    .btn-nfc-packages {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Discount Pricing Styles */
.old-price {
    font-size: 0.9rem;
    color: #6B7280;
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 500;
}

.strikethrough {
    text-decoration: line-through;
    font-weight: 600;
    color: #4B5563;
}

.discount-price {
    color: #10B981 !important;
    font-weight: 900 !important;
    text-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.discount-badge {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    animation: pulse 2s infinite;
    white-space: nowrap;
    text-align: center;
    margin: 0.5rem 0;
    display: block;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    }
}

/* Package card position relative for badge */
.package-card {
    position: relative;
}

/* Mobile adjustments for discount badge */
@media (max-width: 768px) {
    .discount-badge {
        padding: 0.375rem 0.75rem;
        font-size: 0.7rem;
        margin: 0.375rem 0;
    }
    
    .old-price {
        font-size: 0.8rem;
    }
}

/* ===== SALES-FOCUSED LANDING PAGE STYLES ===== */

/* Hero Section - Conversion Focused */
.hero-badge .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.social-proof {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-proof .text-white {
    color: #ffffff !important;
}

.social-proof .text-white-50 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.rating-stars {
    font-size: 1.2rem;
}

.urgency-banner .alert {
    border: none;
    border-radius: 50px;
    font-weight: 600;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 5px rgba(255, 193, 7, 0.5); }
    to { box-shadow: 0 0 20px rgba(255, 193, 7, 0.8); }
}

/* Problem & Solution Section */
.problem-solution-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.problem-box, .solution-box {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.problem-box {
    border-left: 5px solid var(--danger-color);
}

.solution-box {
    border-left: 5px solid var(--success-color);
}

.problem-list, .solution-list {
    list-style: none;
    padding: 0;
}

.problem-list li, .solution-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 1.1rem;
}

.problem-list li:last-child, .solution-list li:last-child {
    border-bottom: none;
}

/* Demo Cards */
.demo-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.demo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.demo-header {
    text-align: center;
    margin-bottom: 1rem;
}

.demo-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.demo-features {
    margin-bottom: 1rem;
    text-align: center;
}

.demo-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.demo-cta {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Features - Benefit Focused */
.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon-large {
    font-size: 3rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-benefit {
    background: #f0fdf4;
    border-radius: 10px;
    padding: 0.75rem;
    margin-top: 1rem;
    text-align: center;
}

/* Pricing Section - High Converting */
.pricing-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.pricing-section .text-white {
    color: #ffffff !important;
}

.pricing-section .text-white-50 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.countdown-timer {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: bold;
}

.pricing-card-featured {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 3px solid var(--accent-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
}

.price-display {
    text-align: center;
    margin: 1rem 0;
}

.old-price {
    display: block;
    color: #6b7280;
    text-decoration: line-through;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.new-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    color: #6b7280;
    font-size: 1.2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

.pricing-cta .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
}

.pricing-card-simple {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.price-simple .old-price {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.price-simple .new-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.testimonial-author strong {
    color: var(--primary-color);
}

/* FAQ */
.accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-body {
    font-size: 1rem;
    line-height: 1.6;
}

/* Final CTA */
.final-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.final-cta-section .text-white {
    color: #ffffff !important;
}

.final-cta-section .text-white-50 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    margin: 0.5rem;
}

/* Button Styles */
.btn-hero-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    border: none;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    color: white;
}

.btn-hero-secondary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-hero-secondary:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #e8851a 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-card-featured {
        margin: 1rem 0;
    }
    
    .demo-actions {
        flex-direction: column;
    }
    
    .cta-buttons {
        text-align: center;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-soft {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.shadow-medium {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.shadow-strong {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
/* City Cards Hover Effect */
.city-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.city-card:hover .card-title {
    color: #ff6b35 !important;
}

.city-card:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}


/* ============================================
   Neden BuberkaSmart - Karşılaştırma Bölümü
   ============================================ */

.why-buberkasmart-section {
    background: #f8f9fa;
}

.comparison-list {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.comparison-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.comparison-item:last-child {
    border-bottom: none;
}

.comparison-bad {
    padding: 1rem;
    background: #fff5f5;
    border-left: 4px solid #dc3545;
    border-radius: 8px;
}

.comparison-good {
    padding: 1rem;
    background: #f0fdf4;
    border-left: 4px solid #28a745;
    border-radius: 8px;
}

.comparison-bad strong,
.comparison-good strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.reason-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.reason-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
}

.reason-highlight {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #f0fdf4;
    border-radius: 8px;
    font-size: 0.95rem;
}

.cta-box {
    animation: pulse-subtle 3s ease-in-out infinite;
}

@keyframes pulse-subtle {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-list {
        padding: 1rem;
    }
    
    .comparison-item {
        padding: 1rem 0;
    }
    
    .comparison-bad,
    .comparison-good {
        margin-bottom: 1rem;
    }
    
    .reason-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .cta-box {
        padding: 2rem 1rem !important;
    }
}


/* ============================================
   WhatsApp Sipariş Butonu (Ürün Kartları)
   ============================================ */

.product-card .btn-success {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.product-card .btn-success:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.product-card .product-info > div:last-child {
    margin-top: 0.75rem;
}

/* Responsive */
@media (max-width: 576px) {
    .product-card .btn-success {
        font-size: 0.75rem;
        padding: 0.35rem 0.6rem;
    }
    
    .product-card .btn-success i {
        font-size: 0.9rem;
    }
}


/* WhatsApp Floating Widget */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
    color: #FFF;
}

.whatsapp-float i {
    margin: 0;
    line-height: 60px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
    
    .whatsapp-float i {
        line-height: 50px;
    }
}


/* ============================================
   ERP BRAND PROFESSIONAL DESIGN OVERRIDES
   ============================================ */

/* Hero Section - Professional ERP Style */
.hero-section-full {
    padding: 80px 0 60px !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
}

.hero-title {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 1.5rem !important;
}

.hero-subtitle {
    font-size: 1.15rem !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;
    color: #64748b !important;
}

.hero-badge .badge {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
}

/* Features Inline - Clean Grid */
.features-inline {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.features-inline .col-auto {
    padding: 0.5rem 1rem;
}

/* Social Proof - Subtle */
.social-proof-minimal {
    padding: 1rem;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    display: inline-block;
}

/* Buttons - Professional */
.btn-hero-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%) !important;
    border: none !important;
    padding: 1rem 2.5rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3) !important;
    transition: all 0.3s ease !important;
}

.btn-hero-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4) !important;
}

.btn-hero-secondary {
    background: #ffffff !important;
    border: 2px solid #e2e8f0 !important;
    color: #1e293b !important;
    padding: 1rem 2.5rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.btn-hero-secondary:hover {
    background: #f8fafc !important;
    border-color: #cbd5e1 !important;
    transform: translateY(-2px) !important;
}

/* Problem/Solution Section - Card Style */
.problem-solution-section {
    background: #ffffff;
    padding: 80px 0 !important;
}

.problem-box, .solution-box {
    padding: 2.5rem;
    border-radius: 12px;
    height: 100%;
}

.problem-box {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid #fecaca;
}

.solution-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #bbf7d0;
}

.problem-list, .solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-list li, .solution-list li {
    padding: 0.75rem 0;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.problem-list li:last-child, .solution-list li:last-child {
    border-bottom: none;
}

/* Demo Cards - Professional Grid */
.demo-section {
    background: #f8fafc !important;
    padding: 80px 0 !important;
}

.demo-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
}

.demo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    border-color: #FF6B35;
}

.demo-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.demo-icon {
    font-size: 2.5rem;
    color: #FF6B35;
    margin-bottom: 1rem;
}

.demo-features {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 1.5rem;
}

.demo-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

/* Pricing Section - Clean Cards */
.pricing-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
    padding: 80px 0 !important;
}

.pricing-card-featured, .pricing-card-simple {
    border-radius: 16px !important;
    transition: all 0.3s ease !important;
}

.pricing-card-featured:hover, .pricing-card-simple:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3) !important;
}

/* Section Titles - Professional */
.section-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 1rem !important;
    letter-spacing: -0.02em !important;
}

.section-subtitle {
    font-size: 1.15rem !important;
    color: #64748b !important;
    font-weight: 400 !important;
}

/* Urgency Banner - Subtle */
.urgency-banner .alert {
    border-radius: 8px !important;
    border: 2px solid #fbbf24 !important;
    background: #fffbeb !important;
    color: #92400e !important;
    font-size: 0.95rem !important;
}

/* Remove AI-generated feel */
.gradient-text {
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800 !important;
}

/* Spacing improvements */
section {
    padding: 60px 0 !important;
}

/* Typography consistency */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
}

p, li, span {
    font-family: 'Poppins', sans-serif !important;
}
