/* ========================================
   SUMITA CHICKEN - BOOTSTRAP CLASSIC
   Modern & Minimal Design
   ======================================== */

/* ===== GLOBAL ===== */
:root {
    --primary: #dc3545;
    --secondary: #212529;
    --light: #f8f9fa;
    --dark: #212529;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #212529;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ===== NAVBAR ===== */
.navbar {
    padding: 0.5rem 0;
    transition: all 0.3s;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.25rem;
    letter-spacing: 0.5px;
}

.nav-link {
    padding: 0.5rem 1rem !important;
    font-weight: 500;
    color: #6c757d !important;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: 
        linear-gradient(135deg, rgba(220, 53, 69, 0.9) 0%, rgba(200, 35, 51, 0.9) 50%, rgba(220, 53, 69, 0.9) 100%),
        url('https://images.unsplash.com/photo-1548550023-2bdb3c5beed7?w=1920&h=1080&fit=crop&q=80') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .display-3 {
    font-size: 3rem;
    line-height: 1.2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

/* ===== SECTIONS ===== */
section {
    scroll-margin-top: 70px;
}

.badge {
    padding: 0.5rem 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

/* ===== CARDS ===== */
.card {
    transition: all 0.3s ease;
    border-radius: 0.5rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.card-body {
    padding: 1.5rem;
}

.icon-box {
    transition: transform 0.3s;
}

.card:hover .icon-box {
    transform: scale(1.1);
}

/* ===== ICON CIRCLE ===== */
.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 0.625rem 1.5rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.3s;
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border: none;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

/* ===== FORMS ===== */
.form-control,
.form-select {
    padding: 0.625rem 0.875rem;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

/* ===== LIST GROUP ===== */
.list-group-item {
    padding: 0.625rem 0;
    border: none;
    background: transparent;
}

/* ===== FOOTER ===== */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer h5,
footer h6 {
    font-size: 1rem;
}

footer a {
    transition: color 0.3s;
}

footer a:hover {
    color: var(--primary) !important;
}

/* ===== SCROLL TO TOP ===== */
#scrollTop {
    z-index: 1000;
    transition: all 0.3s;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#scrollTop:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* ===== UTILITIES ===== */
.shadow-sm {
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
}

/* ===== SPACING ===== */
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.g-3 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

.g-4 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-section .display-3 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
}

@media (max-width: 767px) {
    .hero-section .display-3 {
        font-size: 1.875rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .navbar-brand {
        font-size: 1.125rem;
    }
    
    .btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .card-body {
        padding: 1.25rem;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .g-3 {
        --bs-gutter-x: 0.75rem;
        --bs-gutter-y: 0.75rem;
    }
    
    .g-4 {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }
}

/* ===== HERO IMAGES ===== */
.hero-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.hero-image-card:hover {
    transform: translateY(-5px);
}

.hero-image-card img {
    transition: transform 0.3s ease;
}

.hero-image-card:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.hero-image-card:hover .image-overlay {
    transform: translateY(0);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

/* ===== GALLERY STYLES ===== */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(220, 53, 69, 0.9), rgba(200, 35, 51, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: white;
}

/* ===== PRODUCT CARDS ===== */
.product-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(220, 53, 69, 0.2);
}

.product-badge {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.product-features {
    background: rgba(220, 53, 69, 0.05);
    border-radius: 0.5rem;
    padding: 1rem;
}

.product-pricing {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(200, 35, 51, 0.1));
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
}

/* ===== PRICING CARDS ===== */
.pricing-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.pricing-card.border-danger {
    border: 2px solid var(--primary) !important;
    transform: scale(1.05);
}

.pricing-amount {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(200, 35, 51, 0.1));
    border-radius: 0.5rem;
    padding: 1rem;
}

/* ===== STEP NUMBERS ===== */
.step-number {
    background: linear-gradient(135deg, var(--primary), #c82333);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
    transition: all 0.3s ease;
}

.step-number:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.4);
}

/* ===== STAT CIRCLES ===== */
.stat-circle {
    background: linear-gradient(135deg, var(--primary), #c82333);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
    transition: all 0.3s ease;
}

.stat-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(220, 53, 69, 0.4);
}

/* ===== CONTACT CARDS ===== */
.contact-details {
    background: rgba(220, 53, 69, 0.05);
    border-radius: 0.5rem;
    padding: 1rem;
}

/* ===== BUSINESS HOURS ===== */
.hours-list {
    background: rgba(220, 53, 69, 0.05);
    border-radius: 0.5rem;
    padding: 1rem;
}

/* ===== MAP CONTAINER ===== */
.map-container {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.05), rgba(200, 35, 51, 0.05));
    border: 2px dashed rgba(220, 53, 69, 0.3);
    transition: all 0.3s ease;
}

.map-container:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(200, 35, 51, 0.1));
}

/* ===== ACCORDION ===== */
.accordion-button {
    background: rgba(220, 53, 69, 0.05);
    border: none;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: var(--primary);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.card,
.stat-card {
    animation: fadeIn 0.6s ease-out;
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
}

.hero-images {
    animation: slideInRight 0.8s ease-out;
}

.badge {
    animation: bounce 1s ease-out;
}

.btn:hover {
    animation: pulse 0.3s ease-out;
}

/* ===== PRINT ===== */
@media print {
    .navbar,
    #scrollTop,
    footer {
        display: none;
    }
}
