/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent horizontal scrolling */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

*, *::before, *::after {
    max-width: 100%;
}

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
}

/* GPU acceleration for animations */
.chatbot-container,
.fab-button,
.nav-menu,
.back-to-top {
    transform: translateZ(0);
    will-change: transform;
}

:root {
    --brand-blue: #263673;
    --brand-rust: #a3533c;
    --brand-white: #fdfdfb;
    --brand-blue-light: #3a4d8f;
    --brand-rust-light: #b8654c;
    --brand-gradient: linear-gradient(135deg, #263673 0%, #a3533c 100%);
    --brand-gradient-reverse: linear-gradient(135deg, #a3533c 0%, #263673 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: var(--brand-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.5s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 1;
}

.navbar.visible {
    top: 0;
    opacity: 1;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--brand-blue);
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img-container {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.tm-symbol {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--brand-rust);
    margin-left: -10px;
    align-self: flex-start;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--brand-rust);
    opacity: 0.9;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--brand-rust);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--brand-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 110%;
    height: 110%;
    z-index: -2;
    animation: heroZoom 8s ease-in-out infinite;
    transform-origin: center center;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(38, 54, 115, 0.85) 0%, rgba(163, 83, 60, 0.85) 100%);
    z-index: -1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: overlayPulse 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    animation: heroSweep 12s linear infinite;
    z-index: 5;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    color: white;
    text-align: center;
    position: relative;
    z-index: 10;
    animation: heroContentReveal 2s ease-out;
}

.hero-title {
    margin-bottom: 2rem;
    line-height: 1.3;
}

.title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    color: #fdfdfb;
    line-height: 1.2;
    animation: titleScale 4s ease-in-out infinite;
}

.title-sub {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    opacity: 0.95;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: #fdfdfb;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease 1s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--brand-gradient-reverse);
    color: var(--brand-white);
    box-shadow: 0 8px 25px rgba(163, 83, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(163, 83, 60, 0.4);
    background: linear-gradient(135deg, #b8654c 0%, #3a4d8f 100%);
}

.btn-secondary {
    background: rgba(253, 253, 251, 0.2);
    color: var(--brand-white);
    border: 2px solid rgba(253, 253, 251, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(253, 253, 251, 0.3);
    transform: translateY(-3px);
    border-color: var(--brand-white);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    animation: fadeInUp 1s ease 1.2s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--brand-rust);
}

.feature-item span {
    font-weight: 600;
    color: var(--brand-white);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* Diwali Offers Section */
.diwali-offers {
    padding: 100px 0;
    background: var(--brand-gradient);
    color: var(--brand-white);
    position: relative;
    overflow: hidden;
}

.diwali-offers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="diya" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23diya)"/></svg>');
    opacity: 0.1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-title i {
    color: var(--brand-rust);
    animation: pulse 2s infinite;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Override for non-Diwali sections */
.products .section-title i,
.stores .section-title i,
.contact .section-title i {
    color: var(--brand-rust);
    text-shadow: none;
    animation: none;
}

.section-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.offers-grid, .combo-offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.offer-card, .combo-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: fit-content;
}

.offer-card:hover, .combo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--brand-rust);
}

.offer-card.featured, .combo-card.featured {
    border: 2px solid var(--brand-rust);
    box-shadow: 0 8px 25px rgba(163, 83, 60, 0.15);
}

.offer-card.premium, .combo-card.premium {
    border: 2px solid var(--brand-blue);
    box-shadow: 0 8px 25px rgba(38, 54, 115, 0.15);
}

.offer-badge, .combo-badge {
    background: var(--brand-blue);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    display: inline-block;
    white-space: nowrap;
}

.combo-card.featured .combo-badge {
    background: var(--brand-rust);
}

.combo-card.premium .combo-badge {
    background: var(--brand-blue);
}

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

.combo-price, .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-rust);
    margin-bottom: 0.3rem;
}

.combo-emoji {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.combo-content h3, .offer-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 1rem;
    text-align: center;
}

.combo-items, .offer-features {
    margin: 1rem 0;
    list-style: none;
}

.combo-items .item, .offer-features li {
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: #555;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
}

.combo-items .item:last-child, .offer-features li:last-child {
    border-bottom: none;
}

.combo-tagline {
    text-align: center;
    font-weight: 600;
    color: var(--brand-rust);
    margin: 0.8rem 0;
    font-size: 0.9rem;
}

.combo-btn, .btn {
    width: 100%;
    background: linear-gradient(135deg, var(--brand-rust), #d4483a);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.combo-btn:hover, .btn:hover {
    background: linear-gradient(135deg, #8b4033, var(--brand-rust));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(163, 83, 60, 0.3);
}

/* Product icons in combo items */
.combo-items .item i, .offer-features li i {
    color: var(--brand-rust);
    margin-right: 0.8rem;
    width: 16px;
    text-align: center;
    font-size: 1rem;
}

.combo-items .item strong {
    color: var(--brand-blue);
    font-weight: 700;
}

/* Specific icon colors for different appliance types */
.combo-items .item i.fa-snowflake {
    color: #4a90e2; /* Blue for refrigerators */
}

.combo-items .item i.fa-wind {
    color: #00bcd4; /* Cyan for AC */
}

.combo-items .item i.fa-tv {
    color: #9c27b0; /* Purple for TV */
}

.combo-items .item i.fa-tshirt {
    color: #ff9800; /* Orange for washing machine */
}

.combo-items .item i.fa-fire {
    color: #f44336; /* Red for cooktop/stove */
}

.combo-items .item i.fa-sink {
    color: #607d8b; /* Blue grey for dishwasher */
}

.combo-items .item i.fa-microchip {
    color: #795548; /* Brown for microwave */
}

.combo-items .item i.fa-shower {
    color: #2196f3; /* Blue for water heater */
}

.combo-items .item i.fa-volume-up {
    color: #e91e63; /* Pink for sound system */
}

.combo-items .item i.fa-tools {
    color: #8bc34a; /* Green for installation */
}

.combo-items .item i.fa-shield-alt {
    color: #ffc107; /* Amber for warranty */
}

.combo-items .item i.fa-gift {
    color: #e91e63; /* Pink for gifts */
}

.combo-items .item i.fa-star {
    color: #ffc107; /* Gold for premium service */
}

.combo-items .item i.fa-blender {
    color: #ff5722; /* Deep orange for blender */
}

.combo-items .item i.fa-utensils {
    color: #795548; /* Brown for cookware */
}

.combo-items .item i.fa-cog {
    color: #607d8b; /* Blue grey for grinder */
}

.offers-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 4rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--brand-gradient);
    opacity: 0.95;
}

.banner-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(255,215,0,0.3) 0%, 
        transparent 30%, 
        rgba(255,255,255,0.1) 50%, 
        transparent 70%,
        rgba(255,215,0,0.2) 100%);
}

.banner-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

/* Banner Content Styles */
.banner-content {
    position: relative;
    text-align: center;
    color: var(--brand-white);
    z-index: 10;
    padding: 2rem;
}

.banner-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.banner-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.banner-features span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.banner-features span:nth-child(1) { animation-delay: 0s; }
.banner-features span:nth-child(2) { animation-delay: 1s; }
.banner-features span:nth-child(3) { animation-delay: 2s; }
.banner-features span:nth-child(4) { animation-delay: 3s; }

.banner-features span:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px) scale(1.05);
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-rust));
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
}

.promo-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.promo-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.promo-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.promo-features span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.offer-highlights {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.offer-highlights span {
    background: linear-gradient(135deg, var(--brand-rust), #d4483a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(163, 83, 60, 0.3);
}

/* Product Categories Section */
.products {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(163, 83, 60, 0.05) 0%, 
        transparent 50%);
    transition: all 0.4s ease;
    transform: scale(0);
}

.category-card:hover::before {
    transform: scale(1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--brand-rust);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-rust));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(163, 83, 60, 0.3);
}

.category-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon i {
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.category-card:hover h3 {
    color: var(--brand-rust);
}

.category-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.category-enquiry-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #25d366;
    color: white;
    padding: 6px 10px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.75rem;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.category-enquiry-btn:hover {
    background: #128c7e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.category-enquiry-btn i {
    margin-right: 4px;
    font-size: 0.8rem;
}

.category-brands {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.brand-tag {
    background: rgba(38, 54, 115, 0.1);
    color: var(--brand-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-card:hover .brand-tag {
    background: rgba(163, 83, 60, 0.1);
    color: var(--brand-rust);
    transform: translateY(-2px);
}

/* Special styling for +more... brand tags */
.brand-tag.more-brands {
    background: linear-gradient(135deg, var(--brand-rust), #d4483a);
    color: white;
    font-weight: 700;
    font-style: italic;
    position: relative;
    overflow: hidden;
}

.brand-tag.more-brands::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;
}

.category-card:hover .brand-tag.more-brands::before {
    opacity: 1;
    transform: rotate(45deg) translateX(100%);
}

.category-card:hover .brand-tag.more-brands {
    background: linear-gradient(135deg, #8b4033, var(--brand-rust));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 15px rgba(163, 83, 60, 0.4);
}

.category-visual {
    position: relative;
    z-index: 2;
}

.product-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.category-card:hover .product-icons {
    opacity: 1;
    transform: translateY(-5px);
}

.product-icons i {
    font-size: 1.2rem;
    color: var(--brand-rust);
    background: rgba(163, 83, 60, 0.1);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.category-card:hover .product-icons i {
    background: rgba(163, 83, 60, 0.2);
    transform: scale(1.1);
}

/* Special styling for specific categories */
.category-card[data-category="tv"] .category-icon {
    background: linear-gradient(135deg, #9c27b0, #e91e63);
}

.category-card[data-category="mobile"] .category-icon {
    background: linear-gradient(135deg, #2196f3, #00bcd4);
}

.category-card[data-category="kitchen"] .category-icon {
    background: linear-gradient(135deg, #ff9800, #f44336);
}

.category-card[data-category="home"] .category-icon {
    background: linear-gradient(135deg, #4caf50, #8bc34a);
}

.category-card[data-category="laptop"] .category-icon {
    background: linear-gradient(135deg, #607d8b, #795548);
}

.category-card[data-category="audio"] .category-icon {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
}

/* Responsive design for product categories */
@media (max-width: 992px) {
    .product-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .product-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-card {
        padding: 1.5rem 1rem;
    }
    
    .category-card h3 {
        font-size: 1.3rem;
    }
    
    .brand-tag {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
}

/* Compact Responsive Design */
@media (max-width: 1200px) {
    .combo-offers-grid, .offers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 992px) {
    .combo-offers-grid, .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .combo-card, .offer-card {
        padding: 1.2rem;
    }
    
    .combo-price, .price {
        font-size: 1.8rem;
    }
    
    .electronics-offers {
        padding: 2rem 1rem;
    }
    
    .electronics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .electronics-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .combo-offers-grid, .offers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .combo-card, .offer-card {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .combo-price, .price {
        font-size: 1.6rem;
    }
    
    .combo-emoji {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .combo-content h3, .offer-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .combo-items .item, .offer-features li {
        font-size: 0.8rem;
        padding: 0.3rem 0;
    }
    
    .combo-tagline {
        font-size: 0.85rem;
        margin: 0.6rem 0;
    }
    
    .combo-btn, .btn {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
    
    .offer-highlights {
        gap: 0.3rem;
        margin-top: 0.8rem;
    }
    
    .offer-highlights span {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .promo-features {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .promo-features span {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
}

/* Extra large screens - 4 columns */
@media (min-width: 1400px) {
    .combo-offers-grid, .offers-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    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);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

/* Hero Section Animations */
@keyframes heroZoom {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.08) rotate(0.5deg);
    }
}

@keyframes heroContentReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

@keyframes heroSweep {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

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

/* Selling Items Section */
.selling-items-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.items-category h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.items-category h4 i {
    color: var(--brand-rust);
    font-size: 1.3rem;
}

.items-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.item-tag {
    background: rgba(38, 54, 115, 0.1);
    color: var(--brand-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(38, 54, 115, 0.2);
}

.item-tag:hover {
    background: var(--brand-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(38, 54, 115, 0.3);
}

.item-tag.more-items {
    background: linear-gradient(135deg, var(--brand-rust), #d4483a);
    color: white;
    font-style: italic;
}

/* Brands Showcase Section */
.brands-showcase {
    padding: 4rem 0;
    background: white;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.brand-item {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-blue);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.brand-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(163, 83, 60, 0.1), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: all 0.6s ease;
}

.brand-item:hover::before {
    transform: rotate(45deg) translateX(100%);
}

.brand-item:hover {
    transform: translateY(-5px);
    border-color: var(--brand-rust);
    color: var(--brand-rust);
    box-shadow: 0 10px 30px rgba(163, 83, 60, 0.2);
}

/* Special styling for +more brands */
.brand-item.more-brands {
    background: linear-gradient(135deg, var(--brand-rust), #d4483a);
    color: white;
    font-weight: 700;
    font-style: italic;
    position: relative;
    overflow: hidden;
}

.brand-item.more-brands::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;
}

.brand-item.more-brands:hover::before {
    opacity: 1;
    transform: rotate(45deg) translateX(100%);
}

.brand-item.more-brands:hover {
    background: linear-gradient(135deg, #8b4033, var(--brand-rust));
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(163, 83, 60, 0.4);
    border-color: var(--brand-rust);
}

.emi-partners-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-rust));
    color: white;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.emi-partners-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.emi-partners-section .section-title,
.emi-partners-section .section-subtitle {
    color: white;
}

.emi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.emi-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.emi-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.emi-card.featured {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.emi-logo {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.emi-card:hover .emi-logo {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.emi-logo i {
    font-size: 1.5rem;
    color: white;
}

.emi-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.emi-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    color: white;
}

/* Delivery Area Section */
.delivery-area-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.delivery-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.delivery-card i {
    color: var(--brand-rust);
    font-size: 1.5rem;
}

.delivery-card span {
    font-weight: 600;
    color: var(--brand-blue);
}

.delivery-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-rust);
    box-shadow: 0 10px 25px rgba(163, 83, 60, 0.2);
}

.delivery-card.featured {
    background: linear-gradient(135deg, var(--brand-rust), #d4483a);
    color: white;
    border-color: var(--brand-rust);
}

.delivery-card.featured i,
.delivery-card.featured span {
    color: white;
}

.delivery-description {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.delivery-description p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(163, 83, 60, 0.1) 0%, transparent 50%);
    transition: all 0.4s ease;
    transform: scale(0);
}

.service-card:hover::before {
    transform: scale(1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-rust);
    box-shadow: 0 20px 40px rgba(163, 83, 60, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-rust));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Store Locations Section */
.stores {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.store-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.store-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--brand-rust);
}

.store-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.store-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--brand-rust), #d4483a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.store-info {
    padding: 2rem;
}

.store-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 1.5rem;
}

.store-address {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.store-address i {
    color: var(--brand-rust);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.store-address p {
    color: #666;
    line-height: 1.6;
}

.store-contact {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    color: #555;
}

.contact-item i {
    color: var(--brand-rust);
    font-size: 1.1rem;
    width: 20px;
}

.store-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(38, 54, 115, 0.1);
    color: var(--brand-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.store-hours {
    background: rgba(163, 83, 60, 0.1);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.store-hours h4 {
    color: var(--brand-rust);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.store-hours p {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--brand-gradient);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(163, 83, 60, 0.3);
}

/* Store Opened Section */
.store-opened {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 0.9rem;
}

.store-opened i {
    color: var(--brand-rust);
    font-size: 1rem;
    width: 20px;
}

/* Store Gallery Section */
.store-gallery {
    margin-top: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.store-gallery h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-blue);
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-rust);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid var(--brand-rust);
}

.customer-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.stars i {
    color: #ffc107;
    font-size: 1.2rem;
}

.rating-number {
    font-weight: 700;
    color: var(--brand-blue);
    font-size: 1.1rem;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.testimonial-card h4 {
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.customer-location {
    color: var(--brand-rust);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-rust));
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: contactPulse 8s ease-in-out infinite;
}

@keyframes contactPulse {
    0%, 100% { transform: scale(0.8) rotate(0deg); opacity: 0.3; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.6; }
}

.contact .section-title,
.contact .section-subtitle {
    color: white;
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-card i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    display: block;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.form-group select option {
    background: var(--brand-blue);
    color: white;
}

/* Responsive adjustments for contact cards */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 4rem 0;
    }
    
    .contact-card,
    .contact-form {
        padding: 1.5rem;
    }
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--brand-gradient);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(163, 83, 60, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--brand-rust);
    border-radius: 2px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-section ul li a:hover {
    color: var(--brand-rust);
    transform: translateX(5px);
}

.footer-section ul li a::before {
    content: '→';
    margin-right: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover::before {
    opacity: 1;
}

.store-info {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--brand-rust);
}

.store-info h4 {
    color: var(--brand-rust);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.store-info p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--brand-gradient);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(163, 83, 60, 0.4);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
    color: #999;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.fab-group-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--brand-gradient);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    order: 2;
}

.fab-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    order: 1;
}

.fab-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.fab-button.call {
    background: var(--brand-gradient);
}

.fab-button.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.fab-button.whatsapp-channel {
    background: linear-gradient(135deg, #ff9500, #ff6500);
}

.fab-button.chatbot {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    cursor: pointer;
}

.fab-button.chatbot:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.fab-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Mobile grouping */
@media (max-width: 768px) {
    .floating-actions {
        right: 15px;
        bottom: 15px;
        z-index: 1001;
    }
    
    .fab-group-toggle {
        display: flex;
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        min-width: 55px;
        min-height: 55px;
        touch-action: manipulation;
    }
    
    .fab-group {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
        gap: 0.8rem;
    }
    
    .fab-group.expanded {
        max-height: 250px;
        opacity: 1;
        margin-bottom: 0.8rem;
    }
    
    .fab-button {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        min-width: 50px;
        min-height: 50px;
        transform: scale(0);
        transition: all 0.3s ease;
        touch-action: manipulation;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .fab-group.expanded .fab-button {
        transform: scale(1);
    }
    
    .fab-group.expanded .fab-button:nth-child(1) {
        transition-delay: 0.1s;
    }
    
    .fab-group.expanded .fab-button:nth-child(2) {
        transition-delay: 0.2s;
    }
    
    .fab-group.expanded .fab-button:nth-child(3) {
        transition-delay: 0.3s;
    }
    
    .fab-group.expanded .fab-button:nth-child(4) {
        transition-delay: 0.4s;
    }
    
    .fab-group-toggle.active {
        transform: rotate(45deg);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 120px;
    width: 50px;
    height: 50px;
    background: var(--brand-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(163, 83, 60, 0.4);
}

/* Store Links and Maps */
.store-links {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.store-links .btn {
    flex: 1;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.store-links .btn-primary {
    background: var(--brand-gradient);
    border: none;
    color: white;
    text-decoration: none;
}

.store-links .btn-secondary {
    background: transparent;
    border: 2px solid var(--brand-rust);
    color: var(--brand-rust);
    cursor: pointer;
    transition: all 0.3s ease;
}

.store-links .btn-secondary:hover {
    background: var(--brand-rust);
    color: white;
}

.store-map {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.store-map iframe {
    border-radius: 10px;
}

/* Google Reviews Integration Styles */
.google-reviews-summary {
    margin-bottom: 4rem;
}

.store-review-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.store-review-card {
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.store-review-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: googlePulse 6s ease-in-out infinite;
}

@keyframes googlePulse {
    0%, 100% { transform: scale(0.8) rotate(0deg); opacity: 0.3; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.6; }
}

.store-review-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.store-review-header i {
    font-size: 2rem;
    color: white;
}

.store-review-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.review-stats {
    position: relative;
    z-index: 2;
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rating-score {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.review-count {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.review-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

/* Google Review Cards */
.testimonial-card.google-review {
    border: 2px solid #4285f4;
    position: relative;
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
}

.google-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 10px rgba(66, 133, 244, 0.3);
}

.google-badge i {
    font-size: 0.9rem;
}

.testimonial-card.google-review .testimonial-content {
    padding-top: 1.5rem;
}

.view-original {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #4285f4;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.view-original:hover {
    color: #1a73e8;
    transform: translateX(3px);
}

/* Reviews Call to Action */
.reviews-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0fe 100%);
    border-radius: 20px;
    border: 1px solid rgba(66, 133, 244, 0.1);
}

.reviews-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 1rem;
}

.reviews-cta p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.cta-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(66, 133, 244, 0.3);
}

/* Enhanced Google Review Hover Effects */
.testimonial-card.google-review:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(66, 133, 244, 0.2);



    border-color: #34a853;
}

/* Responsive Design for Google Reviews */
@media (max-width: 768px) {
    .store-review-summary {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .store-review-card {
        padding: 1.5rem;
    }
    
    .rating-score {
        font-size: 2rem;
    }
    
    .reviews-cta {
        padding: 2rem 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Hero Section Mobile Responsive Styles */
@media (max-width: 992px) {
    .hero {
        min-height: 90vh;
        padding-top: 120px;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .title-main {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .title-sub {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        gap: 1rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 85vh;
        padding-top: 100px;
    }
    
    .hero-content {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .title-main {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .title-sub {
        font-size: 1.2rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 100vh;
        padding-top: 70px;
        overflow-x: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        padding: 1rem 0.5rem;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        position: relative;
        z-index: 3;
        text-align: center;
    }
    
    .hero-title {
        margin-bottom: 1.2rem;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
    
    .title-main {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 0.6rem;
        padding: 0 0.2rem;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        white-space: normal;
        display: block;
        color: #fff;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
        font-weight: 700;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 8px;
        padding: 0.5rem;
    }
    
    .title-sub {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
        padding: 0 0.2rem;
        word-break: break-word;
        overflow-wrap: break-word;
        display: block;
        color: #fff;
        text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
        background: rgba(0, 0, 0, 0.25);
        border-radius: 6px;
        padding: 0.3rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
        padding: 0 0.2rem;
        line-height: 1.4;
        color: #fff;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
        background: rgba(0, 0, 0, 0.3);
        border-radius: 6px;
        padding: 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.7rem;
        margin-bottom: 1.5rem;
        width: 100%;
        padding: 0 0.5rem;
        box-sizing: border-box;
    }
    
    .btn {
        width: 100%;
        max-width: 260px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Fix for horizontal overflow on mobile */
    .hero-features {
        padding: 0 0.5rem;
        overflow-x: hidden;
    }
    
    .hero-features .features-grid {
        gap: 0.8rem;
        padding: 0;
    }
}

/* Additional overflow fixes for very small screens */
/* Small mobile screens */
@media (max-width: 480px) {
    .chatbot-container {
        top: 5px;
        bottom: 5px;
        left: 5px;
        right: 5px;
    }
    
    .chatbot-header {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .chatbot-minimize,
    .chatbot-close {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
    
    .category-btn {
        font-size: 10px;
        padding: 6px 8px;
        min-height: 30px;
    }
    
    .chatbot-input {
        padding: 8px;
    }
    
    .chatbot-input input {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .chatbot-input button {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* Extra small screens and landscape phones */
@media (max-width: 480px) and (orientation: landscape) {
    .chatbot-container {
        height: 95vh;
        max-height: 350px;
    }
    
    .chatbot-messages {
        max-height: calc(95vh - 140px);
    }
    
    .chatbot-categories {
        padding: 6px;
    }
    
    .category-btn {
        font-size: 9px;
        padding: 4px 6px;
        min-height: 28px;
    }
}

/* Additional mobile fixes and z-index management */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .nav-menu.active {
        z-index: 1005;
    }
    
    .menu-overlay.active {
        z-index: 1004;
    }
    
    .chatbot-container {
        z-index: 1003;
    }
    
    .floating-actions {
        z-index: 1002;
    }
}

/* Prevent horizontal scroll on all screen sizes */
.hero, .hero-content, .hero-title {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/* Mobile Navigation Responsive Styles */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 2rem 2rem;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1001;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        border-left: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--brand-blue);
        padding: 0.8rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-link:hover {
        color: var(--brand-rust);
        background: rgba(163, 83, 60, 0.1);
        padding-left: 1rem;
        border-radius: 8px;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1002;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: var(--brand-rust);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
        background: var(--brand-rust);
    }
    
    /* Overlay when menu is open */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

@media (max-width: 576px) {
    .nav-container {
        padding: 0.8rem 1rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-tagline {
        font-size: 0.7rem;
    }
    
    .nav-menu {
        width: 100%;
        right: -100%;
        padding: 70px 1.5rem 2rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.7rem 0;
    }
    
    .bar {
        width: 22px;
        height: 2.5px;
        margin: 2.5px 0;
    }
}

/* Additional mobile navigation improvements */
@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        padding: 0.5rem 0.8rem;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-tagline {
        font-size: 0.65rem;
    }
    
    .nav-menu {
        padding: 60px 1rem 1.5rem;
    }
}

/* DIGI Assist Chatbot */
.chatbot-container {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 380px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1003;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-container.active {
    display: flex;
}

.chatbot-header {
    background: var(--brand-gradient);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
}

.chatbot-controls {
    display: flex;
    gap: 10px;
}

.chatbot-minimize,
.chatbot-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbot-minimize:hover,
.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chatbot-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    display: flex;
    gap: 10px;
    max-width: 85%;
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bot-message .message-avatar {
    background: var(--brand-gradient);
    color: white;
}

.user-message .message-avatar {
    background: #e3f2fd;
    color: var(--brand-blue);
}

.message-content {
    background: #f5f5f5;
    padding: 12px 15px;
    border-radius: 15px;
    line-height: 1.4;
}

.user-message .message-content {
    background: var(--brand-blue);
    color: white;
}

.message-content p {
    margin: 0 0 8px 0;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.quick-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.category-btn {
    background: var(--brand-blue);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background: var(--brand-rust);
}

.chatbot-typing {
    padding: 0 20px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.9rem;
}

.typing-indicator {
    display: flex;
    gap: 3px;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: #666;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
}

.chatbot-categories {
    padding: 15px;
    border-top: 1px solid #e5e5e5;
    background: #f8f9fa;
}

.categories-title {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 600;
}

.categories-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.category-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.chatbot-input {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chatbot-input input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 10px 15px;
    outline: none;
    font-size: 0.9rem;
}

.chatbot-input input:focus {
    border-color: var(--brand-blue);
}

.chatbot-input button {
    width: 40px;
    height: 40px;
    background: var(--brand-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbot-input button:hover {
    transform: scale(1.1);
}

/* Chatbot Mobile responsive - Fixed positioning and zoom issues */
@media (max-width: 768px) {
    .chatbot-container {
        position: fixed;
        top: max(10px, env(safe-area-inset-top));
        right: max(10px, env(safe-area-inset-right));
        bottom: max(10px, env(safe-area-inset-bottom));
        left: max(10px, env(safe-area-inset-left));
        width: auto;
        height: auto;
        max-height: none;
        border-radius: 8px;
        box-sizing: border-box;
        flex-direction: column;
        transform: translateZ(0);
        backface-visibility: hidden;
    }
    
    .chatbot-container.active {
        display: flex;
    }
    
    .chatbot-header {
        padding: 12px 15px;
        font-size: 1rem;
        flex-shrink: 0;
        position: relative;
    }
    
    .chatbot-minimize,
    .chatbot-close {
        width: 36px;
        height: 36px;
        font-size: 16px;
        min-width: 36px;
        min-height: 36px;
        touch-action: manipulation;
    }
    
    .chatbot-body {
        flex: 1;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        min-height: 0;
    }
    
    .chatbot-messages {
        padding: 12px;
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        min-height: 0;
    }
    
    .message {
        margin-bottom: 12px;
    }
    
    .message-content {
        padding: 10px 14px;
        font-size: 14px;
        line-height: 1.4;
        max-width: 90%;
        word-wrap: break-word;
    }
    
    .chatbot-categories {
        padding: 10px;
        border-top: 1px solid #e5e5e5;
        background: #f8f9fa;
        flex-shrink: 0;
    }
    
    .categories-buttons {
        gap: 6px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .category-btn {
        font-size: 11px;
        padding: 8px 10px;
        border-radius: 15px;
        min-height: 32px;
        touch-action: manipulation;
    }
    
    .chatbot-input {
        padding: 12px;
        background: white;
        border-top: 1px solid #e5e5e5;
        flex-shrink: 0;
    }
    
    .chatbot-input input {
        font-size: 14px;
        padding: 10px 14px;
        border-radius: 20px;
    }
    
    .chatbot-input button {
        width: 40px;
        height: 40px;
        font-size: 16px;
        touch-action: manipulation;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .chatbot-container {
        top: 5px;
        bottom: 5px;
        left: 5px;
        right: 5px;
    }
    
    .chatbot-header {
        padding: 8px 12px;
    }
    
    .chatbot-minimize,
    .chatbot-close {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .chatbot-categories {
        padding: 6px;
    }
    
    .category-btn {
        font-size: 10px;
        padding: 6px 8px;
        min-height: 28px;
    }
    
    .chatbot-input {
        padding: 8px;
    }
}
