/* Custom Styles for Half Price Liquidation - Enhanced Design */

/* Import Google Fonts for better typography */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* Global Styles */
:root {
    --primary-color: #0d6efd;
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-color: #6c757d;
    --warning-color: #ffc107;
    --warning-gradient: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    --danger-color: #dc3545;
    --danger-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-color: #212529;
    --light-bg: #f8f9fa;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 80px;
    background-color: #ffffff;
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #2c3e50;
}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Hero Carousel Section - Enhanced */
.hero-carousel-section {
    position: relative;
    margin-bottom: 4rem;
}

.hero-carousel-section .carousel {
    height: 85vh;
    min-height: 600px;
}

.hero-slide {
    height: 85vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-carousel-section .carousel-item {
    height: 85vh;
    min-height: 600px;
}

.hero-carousel-section .carousel-inner {
    height: 100%;
}

.hero-carousel-section .carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.hero-carousel-section .carousel-fade .carousel-item.active,
.hero-carousel-section .carousel-fade .carousel-item-next.carousel-item-start,
.hero-carousel-section .carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.hero-carousel-section .carousel-fade .active.carousel-item-start,
.hero-carousel-section .carousel-fade .active.carousel-item-end {
    opacity: 0;
}

.hero-features {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    padding: 2rem 0;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

.hero-features .text-white h5 {
    color: #fff;
    margin-top: 0.5rem;
}

/* Hero Banner - Enhanced (for other pages) */
.hero-banner {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%),
                url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?w=1920&h=1080&fit=crop') center/cover;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 193, 7, 0.2) 0%, transparent 50%);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content .lead {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 500;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Page Header - Enhanced */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-header h1 {
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Navigation - Enhanced */
.navbar {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    transition: transform 0.3s ease;
}

.navbar-brand .gradient-text {
    background: var(--warning-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand i {
    font-size: 1.8rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.nav-link {
    font-weight: 500;
    position: relative;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffc107, #ff9800);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: #ffc107 !important;
    transform: translateY(-2px);
}

/* Cards - Enhanced */
.card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.card-img-top {
    transition: transform 0.5s ease;
    border-radius: 15px 15px 0 0;
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

.product-card {
    cursor: pointer;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 15px;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card .card-body {
    position: relative;
    z-index: 2;
}

/* Badge - Enhanced */
.badge {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
    animation: pulse 2s infinite;
}

.badge.bg-danger {
    background: var(--danger-gradient) !important;
}

.badge.bg-success {
    background: var(--success-gradient) !important;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(220, 53, 69, 0.5);
    }
}

/* Product Filters - Enhanced */
.filter-btn,
.gallery-filter {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid;
    position: relative;
    overflow: hidden;
}

.filter-btn::before,
.gallery-filter::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.filter-btn:hover::before,
.gallery-filter:hover::before {
    width: 300px;
    height: 300px;
}

.filter-btn.active,
.gallery-filter.active {
    background: var(--primary-gradient) !important;
    color: white !important;
    border-color: transparent !important;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

/* Gallery - Enhanced */
.gallery-image {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 15px;
}

.gallery-image:hover {
    transform: scale(1.08) rotate(1deg);
    box-shadow: var(--shadow-xl);
}

/* Countdown Timer - Enhanced */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.countdown-timer > div > div {
    min-width: 90px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(245, 87, 108, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.countdown-timer > div > div::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.countdown-timer > div > div:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(245, 87, 108, 0.6);
}

/* Deal Badge - Enhanced */
.deal-badge .badge {
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    background: var(--danger-gradient) !important;
    box-shadow: 0 5px 20px rgba(245, 87, 108, 0.5);
}

/* Forms - Enhanced */
.form-control {
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
    transform: translateY(-2px);
}

/* Buttons - Enhanced */
.btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-warning {
    background: var(--warning-gradient) !important;
    border: none;
    color: #1a1a2e;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.btn-warning:hover {
    background: linear-gradient(135deg, #ff9800 0%, #ffc107 100%) !important;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6);
    color: #1a1a2e;
}

.btn-primary {
    background: var(--primary-gradient) !important;
    border: none;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Social Links - Enhanced */
.social-links a {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.5rem;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--warning-gradient);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
    color: #1a1a2e !important;
}

/* Footer - Enhanced */
footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--warning-gradient);
}

/* Map Container - Enhanced */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: scale(1.02);
}

/* Contact Info - Enhanced */
.contact-info h5 {
    color: var(--dark-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-info h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--warning-gradient);
    border-radius: 2px;
}

/* Animations - Enhanced */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-item,
.gallery-item {
    animation: fadeIn 0.6s ease;
}

/* Testimonials - Enhanced */
.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-left: 4px solid;
    border-image: var(--warning-gradient) 1;
}

.card-body .text-warning {
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

/* Carousel - Enhanced */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 20;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--warning-gradient);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: transparent;
    filter: invert(1);
}

/* Hero Carousel Controls */
.hero-carousel-section .carousel-control-prev,
.hero-carousel-section .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 20;
}

.hero-carousel-section .carousel-control-prev:hover,
.hero-carousel-section .carousel-control-next:hover {
    opacity: 1;
    background: var(--warning-gradient);
    transform: translateY(-50%) scale(1.1);
}

.hero-carousel-section .carousel-indicators {
    z-index: 20;
    bottom: 100px;
}

.hero-carousel-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.hero-carousel-section .carousel-indicators button.active {
    background-color: var(--warning-color);
    border-color: var(--warning-color);
    transform: scale(1.2);
}

/* Section Backgrounds */
.bg-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
}

section {
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

section:last-child {
    margin-bottom: 0;
}

/* Pricing Display - Enhanced */
.pricing {
    position: relative;
}

.pricing .text-decoration-line-through {
    font-size: 1.5rem;
    opacity: 0.6;
}

.pricing .display-4 {
    background: var(--danger-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Newsletter Form - Enhanced */
#newsletterForm {
    max-width: 100%;
}

.newsletter-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

/* Responsive - Enhanced */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: clamp(2rem, 4vw, 3.5rem);
    }
    
    .hero-content .lead {
        font-size: clamp(1rem, 1.5vw, 1.5rem);
    }
}

@media (max-width: 992px) {
    .hero-banner {
        height: 70vh;
        min-height: 500px;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .display-6 {
        font-size: 1.75rem;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .countdown-timer > div > div {
        min-width: 75px;
    }
    
    .card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .hero-banner,
    .hero-carousel-section .carousel,
    .hero-slide,
    .hero-carousel-section .carousel-item {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-carousel-section {
        margin-bottom: 2rem;
    }
    
    .hero-features {
        margin-top: -2rem;
        padding: 1.5rem 0;
    }
    
    .hero-carousel-section .carousel-indicators {
        bottom: 80px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-content .lead {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-content .fs-5 {
        font-size: 1rem !important;
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .display-6 {
        font-size: 1.5rem;
    }
    
    .countdown-timer {
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .countdown-timer > div > div {
        min-width: 65px;
        padding: 0.75rem !important;
    }
    
    .countdown-timer .fs-1 {
        font-size: 1.5rem !important;
    }
    
    .countdown-timer small {
        font-size: 0.7rem;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.75rem;
        font-size: 1rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .badge.fs-5 {
        font-size: 1rem !important;
    }
    
    .filter-btn,
    .gallery-filter {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    section {
        padding: 3rem 0 !important;
    }
    
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .mt-5 {
        margin-top: 2rem !important;
    }
    
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    .g-4 {
        --bs-gutter-y: 1.5rem;
        --bs-gutter-x: 1rem;
    }
    
    .g-5 {
        --bs-gutter-y: 2rem;
        --bs-gutter-x: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-banner,
    .hero-carousel-section .carousel,
    .hero-slide,
    .hero-carousel-section .carousel-item {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-features {
        margin-top: -1.5rem;
        padding: 1rem 0;
    }
    
    .hero-carousel-section .carousel-indicators {
        bottom: 60px;
    }
    
    .hero-carousel-section .carousel-control-prev,
    .hero-carousel-section .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-content .lead {
        font-size: 1rem;
    }
    
    .hero-content .fs-2 {
        font-size: 1.1rem !important;
    }
    
    .hero-content .fs-5 {
        font-size: 0.9rem !important;
    }
    
    .display-3 {
        font-size: 1.75rem;
    }
    
    .display-4 {
        font-size: 1.75rem;
    }
    
    .display-5 {
        font-size: 1.5rem;
    }
    
    .display-6 {
        font-size: 1.25rem;
    }
    
    .countdown-timer {
        gap: 0.4rem;
    }
    
    .countdown-timer > div > div {
        min-width: 55px;
        padding: 0.6rem !important;
    }
    
    .countdown-timer .fs-1 {
        font-size: 1.25rem !important;
    }
    
    .countdown-timer small {
        font-size: 0.6rem;
    }
    
    .btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.8rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .btn-lg {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
        gap: 0.75rem !important;
    }
    
    .d-flex.gap-3 .btn {
        width: 100%;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar-brand i {
        font-size: 1.3rem;
    }
    
    .card-img-top {
        height: 200px;
        object-fit: cover;
    }
    
    .row.g-4 > * {
        margin-bottom: 1rem;
    }
    
    section {
        padding: 2rem 0 !important;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .text-center .lead {
        font-size: 1rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin: 0.25rem;
    }
    
    .map-container iframe {
        height: 300px !important;
    }
    
    .hero-content .row.g-4 {
        margin-top: 2rem !important;
    }
    
    .hero-content .row.g-4 .col-md-4 {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 400px) {
    .hero-banner,
    .hero-carousel-section .carousel,
    .hero-slide,
    .hero-carousel-section .carousel-item {
        height: 45vh;
        min-height: 300px;
    }
    
    .hero-features {
        margin-top: -1rem;
        padding: 0.75rem 0;
    }
    
    .hero-carousel-section .carousel-indicators {
        bottom: 50px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .countdown-timer > div > div {
        min-width: 50px;
        padding: 0.5rem !important;
    }
    
    .countdown-timer .fs-1 {
        font-size: 1.1rem !important;
    }
    
    .badge.fs-5 {
        font-size: 0.9rem !important;
        padding: 0.4rem 0.8rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Image Hover Effects - Enhanced */
img {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card img:hover {
    transform: scale(1.1);
}

/* Modal - Enhanced */
.modal-content {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: var(--shadow-xl);
}

.modal-body img {
    width: 100%;
    height: auto;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Utilities - Enhanced */
.text-shadow {
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: var(--warning-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Shimmer Effect */
.shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Section Dividers */
.section-divider {
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.1) 100%);
    position: relative;
}

/* Gallery Styles - Enhanced */
.gallery-card {
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.gallery-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.gallery-card img {
    transition: transform 0.5s ease;
    border-radius: 12px 12px 0 0;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#imageModal .modal-dialog {
    max-width: 600px;
}

.product-modal-content {
    border-radius: 16px;
    overflow: hidden;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.product-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 1.25rem;
    border-bottom: none;
}

.product-modal-header .modal-title {
    font-size: 1rem;
    line-height: 1.4;
    color: white;
}

.product-image-wrapper {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 1.5rem;
    text-align: center;
    border-bottom: 2px solid #e9ecef;
}

.product-modal-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    border-radius: 8px;
}

.product-details-container {
    background: white;
    padding: 1.25rem;
}

.product-details-container .product-details {
    background: white;
}

/* Price Section */
.product-price-box {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 15px rgba(238, 90, 111, 0.3);
}

.product-price-box .original-price {
    font-size: 0.85rem;
    opacity: 0.9;
    text-decoration: line-through;
    display: block;
    margin-bottom: 0.25rem;
}

.product-price-box .sale-price {
    font-size: 1.75rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.product-price-box .discount-badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

/* Category Badge */
.product-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* Description */
.product-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #667eea;
}

/* Features Section */
.product-features-section {
    margin-bottom: 1.25rem;
}

.product-features-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-features-title i {
    color: #667eea;
    font-size: 1.1rem;
}

.product-feature-item {
    display: flex;
    align-items: flex-start;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: #495057;
    line-height: 1.5;
}

.product-feature-item i {
    color: #28a745;
    margin-right: 0.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Advantages/Highlights Section */
.product-highlights-section {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 2px dashed #dee2e6;
}

.product-highlights-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-highlights-title i {
    color: #ffc107;
    font-size: 1.1rem;
}

.product-highlight-item {
    display: flex;
    align-items: flex-start;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: #495057;
    line-height: 1.5;
}

.product-highlight-item i {
    color: #ffc107;
    margin-right: 0.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.gallery-filter.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

/* About Section Enhanced Styles */
.story-content {
    animation: fadeInUp 0.6s ease-out;
}

.story-content .d-flex {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.story-content .d-flex:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.mission-card {
    animation: fadeInUp 0.8s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3) !important;
}

.mission-card .bg-white.bg-opacity-20 {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Story Image Enhancement */
#about img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#about img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2) !important;
}

/* Badge Enhancement */
#about .badge {
    padding: 0.5rem 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.75rem;
}