/* ===== MODERN ORANGE & WHITE THEME ===== */
:root {
    --orange-primary: #FF6B35;
    --orange-secondary: #FF8C42;
    --orange-light: #FFB88C;
    --orange-dark: #E55A2B;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--gray-900);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ===== UTILITIES ===== */
.text-orange {
    color: var(--orange-primary) !important;
}

.bg-orange {
    background-color: var(--orange-primary) !important;
}

.bg-gradient-orange {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
}

.text-light-gray {
    color: var(--gray-300);
}

/* ===== NAVBAR ===== */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar-scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.25rem;
    font-weight: 700;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: var(--gray-700) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--orange-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

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

/* ===== BUTTONS ===== */
.btn {
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-orange {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-orange:hover {
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
    color: var(--white);
}

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

.btn-outline-orange:hover {
    background: var(--orange-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.05rem;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background-color: #D4A5C7;
    background-image: 
        linear-gradient(135deg, rgb(233 184 217 / 0%) 0%, rgba(212, 165, 199, 0.95) 25%, rgb(193 149 184 / 33%) 50%, rgba(184, 141, 201, 0.95) 75%, rgba(168, 123, 184, 0.95) 100%), url(../../images/hero_stores.png),
        url('/images/hero_stores.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding: 100px 0 60px;
}

/* Cloud decorations */
.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 100px;
}

.hero-section::before {
    width: 200px;
    height: 60px;
    top: 15%;
    left: 10%;
    box-shadow: 
        80px 0 0 rgba(255, 255, 255, 0.25),
        -80px 0 0 rgba(255, 255, 255, 0.25);
}

.hero-section::after {
    width: 180px;
    height: 50px;
    top: 25%;
    right: 15%;
    box-shadow: 
        70px 0 0 rgba(255, 255, 255, 0.2),
        -70px 0 0 rgba(255, 255, 255, 0.2);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #FFFFFF;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.hero-title .text-highlight {
    color: #FFFFFF;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

/* Button styles for hero */
.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #FFFFFF;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn.rounded-pill {
    border-radius: 50px !important;
}

/* ===== SEARCH BOX ===== */
.search-box-hero {
    max-width: 700px;
}

.search-box-hero .input-group {
    border-radius: 50px;
    overflow: hidden;
    background: white;
    border: none;
}

.search-box-hero .form-control {
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    background: transparent;
}

.search-box-hero .form-control:focus {
    box-shadow: none;
    outline: none;
}

.search-box-hero .form-control::placeholder {
    color: #9CA3AF;
}

.search-box-hero .input-group-text {
    border: none;
    padding: 0 1.5rem;
    background: transparent;
}

.btn-search {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    color: white;
    border: none;
    font-weight: 600;
    padding: 1rem 2.5rem;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange-primary) 100%);
    transform: scale(1.02);
    color: white;
}

/* Old search box (if still used elsewhere) */
.search-box .input-group {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.search-box .input-group:focus-within {
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.search-box .form-control {
    border: none;
    padding: 0.875rem 1rem;
    font-size: 1rem;
}

.search-box .form-control:focus {
    box-shadow: none;
}

.search-box .input-group-text {
    border: none;
    padding: 0 1rem;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
    background: linear-gradient(90deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    box-shadow: var(--shadow-md);
}

.promo-banner h5 {
    font-weight: 600;
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--gray-100);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange-primary);
    box-shadow: var(--shadow-xl);
}

.testimonial-card .stars {
    color: #FFC107;
}

/* ===== CERTIFICATE CARDS ===== */
.certificate-card {
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--gray-100);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.certificate-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange-primary);
    box-shadow: var(--shadow-xl);
}

.certificate-preview {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.certificate-preview i {
    transition: all 0.3s ease;
}

.certificate-card:hover .certificate-preview i {
    transform: scale(1.1);
    color: var(--orange-secondary);
}

/* ===== PARTNERSHIP CARDS ===== */
.partnership-card {
    background: var(--white);
    border-radius: 20px;
    border: 3px solid var(--gray-100);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.partnership-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--orange-primary);
    box-shadow: 0 16px 40px rgba(255, 107, 53, 0.25);
}

.partnership-card.featured-partnership {
    border-color: var(--orange-primary);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.2);
}

.partnership-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

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

.partnership-card:hover .partnership-image img {
    transform: scale(1.1);
}

.package-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.badge-standard {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
}

.badge-pro {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    color: white;
}

.badge-autopilot {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
}

.best-seller-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FF5722 0%, #E64A19 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
    animation: pulse 2s infinite;
}

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

.partnership-body {
    padding: 2rem 1.5rem;
}

.partnership-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    min-height: 60px;
}

.partnership-price {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 66, 0.1) 100%);
    border-radius: 12px;
    text-align: center;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange-primary);
    text-shadow: 2px 2px 4px rgba(255, 107, 53, 0.1);
}

.partnership-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.partnership-features li {
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.partnership-features li:last-child {
    border-bottom: none;
}

/* Partnership responsive */
@media (max-width: 768px) {
    .partnership-title {
        font-size: 1.1rem;
        min-height: auto;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .partnership-image {
        height: 220px;
    }
    
    .partnership-body {
        padding: 1.5rem 1rem;
    }
}
/* ===== FEATURE CARDS ===== */
.feature-card {
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--gray-100);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange-primary);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

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

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* Gallery responsive */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Mobile Gallery Carousel */
#mobileGalleryCarousel .carousel-inner {
    border-radius: 16px;
    overflow: hidden;
}

#mobileGalleryCarousel .carousel-item img {
    height: 300px;
    object-fit: cover;
}

#mobileGalleryCarousel .carousel-control-prev-icon,
#mobileGalleryCarousel .carousel-control-next-icon {
    background-color: rgba(255, 107, 53, 0.8);
    border-radius: 50%;
    padding: 20px;
}

#mobileGalleryCarousel .carousel-indicators button {
    background-color: var(--orange-primary);
}

/* ===== CATEGORY CARDS ===== */
.category-card {
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--gray-100);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange-primary);
    box-shadow: var(--shadow-xl);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    box-shadow: 0 8px 16px rgba(255, 107, 53, 0.3);
}

.category-card h4 {
    color: var(--gray-900);
    margin-top: 1rem;
}

/* ===== OUTLET CARDS (BukaOutlet Style) ===== */
.outlet-card {
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--gray-100);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.outlet-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange-primary);
    box-shadow: var(--shadow-xl);
}

.outlet-card.featured-card {
    border-color: var(--orange-primary);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
}

.outlet-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--gray-100);
}

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

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

.verified-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #10B981;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.outlet-body {
    padding: 1.25rem;
}

.outlet-category {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange-primary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.outlet-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    min-height: 50px;
}

.outlet-price {
    margin-bottom: 1rem;
}

.price-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.price-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange-primary);
}

.outlet-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.outlet-features li {
    padding: 0.4rem 0;
    font-size: 0.875rem;
    color: var(--gray-700);
}

/* Custom Card (for Custom Project & Custom Brand) */
.custom-card .outlet-image.custom-image {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 66, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-icon {
    font-size: 4rem;
    color: var(--orange-primary);
}

.custom-card .outlet-body p {
    font-size: 0.875rem;
    line-height: 1.5;
}

/* ===== BUSINESS SECTION WITH PATTERN ===== */
.business-section {
    position: relative;
    background-color: #FFF5F0;
    background-image: url('../../images/pattern.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.business-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 0;
}

.business-section .container {
    position: relative;
    z-index: 1;
}

.business-section h2 {
    position: relative;
    z-index: 2;
}

.business-section .text-muted {
    position: relative;
    z-index: 2;
}

/* ===== PRICING CARDS ===== */
.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid var(--gray-100);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange-primary);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--orange-primary);
    box-shadow: 0 12px 24px rgba(255, 107, 53, 0.2);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--orange-primary);
    color: var(--white);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price-tag {
    background: var(--gray-50);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
}

.pricing-card ul li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--gray-700);
}

/* ===== CUSTOM PROJECT CARD ===== */
.custom-project-card {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%);
    border: 2px dashed var(--orange-primary);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

/* ===== FEATURE CARDS ===== */
.feature-card {
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--gray-100);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange-light);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 66, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-primary);
    font-size: 2rem;
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--orange-light);
}

.testimonial-card .stars {
    font-size: 1.1rem;
}

/* ===== CERTIFICATE CARDS ===== */
.certificate-card {
    background: var(--white);
    border-radius: 20px;
    border: 2px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--orange-primary);
}

/* ===== GALLERY CAROUSEL ===== */
#galleryCarousel .carousel-item img {
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--orange-primary);
    border-radius: 50%;
    padding: 1.5rem;
}

.carousel-indicators button {
    background-color: var(--orange-primary);
}

/* ===== FOOTER ===== */
.footer-modern {
    background: linear-gradient(135deg, var(--gray-900) 0%, #1F2937 100%);
    color: var(--gray-300);
}

.footer-modern h5,
.footer-modern h6 {
    color: var(--white);
}

.footer-modern a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-modern a:hover {
    color: var(--orange-primary);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--orange-primary);
    transform: translateY(-3px);
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
    color: var(--white);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    #galleryCarousel .carousel-item img {
        height: 350px;
    }
    
    /* Tablet outlet card adjustments */
    .outlet-title {
        font-size: 1.05rem;
    }
    
    .price-value {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    #galleryCarousel .carousel-item img {
        height: 250px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Outlet Card Mobile Responsive */
    .outlet-title {
        font-size: 1rem;
        min-height: auto;
    }
    
    .outlet-category {
        font-size: 0.7rem;
        padding: 3px 10px;
    }
    
    .price-label {
        font-size: 0.7rem;
    }
    
    .price-value {
        font-size: 1.25rem;
    }
    
    .outlet-features li {
        font-size: 0.8rem;
        padding: 0.3rem 0;
    }
    
    .outlet-body {
        padding: 1rem;
    }
    
    .verified-badge {
        font-size: 0.65rem;
        padding: 3px 8px;
    }
    
    .popular-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
    }
    
    .custom-icon {
        font-size: 3rem;
    }
    
    .custom-card .outlet-body p {
        font-size: 0.8rem;
    }
    
    /* Mobile text adjustments */
    h2, .h2 {
        font-size: 1.5rem;
    }
    
    h3, .h3 {
        font-size: 1.25rem;
    }
    
    h4, .h4 {
        font-size: 1.1rem;
    }
    
    h5, .h5 {
        font-size: 1rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .text-muted {
        font-size: 0.875rem;
    }
}

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

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

/* ===== SMOOTH SCROLLING ===== */
section {
    scroll-margin-top: 80px;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--orange-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--orange-dark);
}
