/* =============================================
   KABANE LOCATION - MAIN STYLESHEET
   ============================================= */

/* Variables */
:root {
    --orange: #F99735;
    --orange-dark: #EB2F37;
    --orange-light: #FFF3E0;
    --green: #5670FE;
    --green-dark: #4560DD;
    --green-light: #E8EBFF;
    --yellow: #ECB93A;
    --blue: #5670FE;
    --purple: #ED0090;
    --dark: #333333;
    --gray: #666666;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --shadow: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 60px rgba(249, 151, 53, 0.2);
    --radius: 20px;
    --radius-full: 50px;
    --transition: all 0.4s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* =============================================
   HEADER
   ============================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

/* Navigation */
nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--dark);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    transition: width 0.3s;
}

nav a:hover,
nav a.active {
    color: var(--orange);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--orange);
    border-radius: 3px;
    transition: 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* =============================================
   FLOATING CART BUTTON
   ============================================= */
.floating-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    transition: var(--transition);
}

.floating-cart.hidden {
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
}

.floating-cart .cart-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: white;
    padding: 15px 25px;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 40px rgba(247, 148, 29, 0.4);
    font-weight: 700;
    transition: var(--transition);
}

.floating-cart .cart-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(247, 148, 29, 0.5);
}

.floating-cart .cart-icon {
    font-size: 1.5rem;
}

.floating-cart .cart-count {
    background: var(--green);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
}

.floating-cart .cart-text {
    display: inline;
}

@media (max-width: 768px) {
    .floating-cart {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-cart .cart-btn {
        padding: 12px 18px;
    }
    
    .floating-cart .cart-text {
        display: none;
    }
}

/* =============================================
   HERO SECTION - FIXED
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 2rem 4rem;
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--green-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: var(--green);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite 2s;
}

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

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    z-index: 2;
}

.hero h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero h1 .accent-orange {
    color: var(--orange);
}

.hero h1 .accent-green {
    color: var(--green);
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 2rem;
    font-weight: 500;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: var(--orange);
    color: white;
    box-shadow: 0 4px 20px rgba(247, 148, 29, 0.4);
}

.cta-button.primary:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(247, 148, 29, 0.5);
}

.cta-button.secondary {
    background: var(--green);
    color: white;
    box-shadow: 0 4px 20px rgba(139, 197, 63, 0.4);
}

.cta-button.secondary:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
}

/* Hero Images Grid - FIXED */
.hero-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 3rem;
    z-index: 2;
    position: relative;
    min-height: 400px;
}

.hero-img-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
    background: white;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img-wrapper:hover {
    transform: scale(1.05);
    z-index: 10;
}

.hero-img-wrapper:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.hero-img-wrapper:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    transform: translateY(20px);
}

.hero-img-wrapper:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
    transform: translateY(-20px);
}

.hero-img-wrapper:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.hero-img-wrapper:nth-child(2):hover {
    transform: translateY(20px) scale(1.05);
}

.hero-img-wrapper:nth-child(3):hover {
    transform: translateY(-20px) scale(1.05);
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
    padding: 5rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    background: var(--orange);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-tag.green {
    background: var(--green);
}

.section-header h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: var(--dark);
}

.section-header h2 .accent {
    color: var(--orange);
}

/* =============================================
   CATEGORIES
   ============================================= */
.categories {
    background: var(--light-gray);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 3px solid transparent;
    display: block;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange);
    box-shadow: 0 20px 50px rgba(247, 148, 29, 0.2);
}

.category-card:nth-child(2):hover {
    border-color: var(--green);
    box-shadow: 0 20px 50px rgba(139, 197, 63, 0.2);
}

.category-card:nth-child(3):hover {
    border-color: var(--blue);
    box-shadow: 0 20px 50px rgba(0, 174, 239, 0.2);
}

.category-card:nth-child(4):hover {
    border-color: var(--purple);
    box-shadow: 0 20px 50px rgba(158, 31, 99, 0.2);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: var(--transition);
}

.category-card:nth-child(2) .category-icon {
    background: var(--green-light);
}

.category-card:nth-child(3) .category-icon {
    background: #E0F7FF;
}

.category-card:nth-child(4) .category-icon {
    background: #F5E0ED;
}

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

.category-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.category-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* =============================================
   PRODUCTS GRID
   ============================================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 3px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange);
    box-shadow: var(--shadow-hover);
}

.product-card.selected {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(139, 197, 63, 0.3);
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: var(--light-gray);
    padding: 1rem;
    transition: var(--transition);
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--orange);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.product-badge.green {
    background: var(--green);
}

.product-badge.blue {
    background: var(--blue);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.product-info p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    min-height: 40px;
}

/* =============================================
   PRODUCT SELECTION (Checkboxes)
   ============================================= */
.product-selection {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 1rem;
    border-top: 2px dashed var(--light-gray);
}

.duration-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--light-gray);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.duration-option:hover {
    background: var(--orange-light);
}

.duration-option input[type="checkbox"] {
    display: none;
}

.duration-option .checkmark {
    width: 24px;
    height: 24px;
    border: 3px solid var(--gray);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.duration-option .checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.2s;
}

.duration-option input[type="checkbox"]:checked + .checkmark {
    background: var(--green);
    border-color: var(--green);
}

.duration-option input[type="checkbox"]:checked + .checkmark::after {
    opacity: 1;
}

.duration-option input[type="checkbox"]:checked ~ .option-text {
    color: var(--green-dark);
    font-weight: 700;
}

.option-text {
    font-size: 0.95rem;
    color: var(--dark);
}

.option-text strong {
    color: var(--orange);
    font-size: 1.1rem;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: var(--yellow);
    border-radius: 50%;
    opacity: 0.1;
}

.contact .section-tag {
    background: rgba(255,255,255,0.2);
}

.contact .section-header h2 {
    color: white;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-content > p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius);
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition);
    min-width: 250px;
    cursor: pointer;
}

.contact-method:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-5px);
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.contact-method-text {
    text-align: left;
}

.contact-method-text h4 {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
    font-weight: 600;
    text-transform: uppercase;
}

.contact-method-text span {
    font-size: 1.1rem;
    font-weight: 700;
}

.contact-cta {
    margin-top: 2rem;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-page {
    padding: 120px 2rem 4rem;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--green-light) 100%);
}

.contact-page-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-page-header h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.contact-page-header p {
    font-size: 1.1rem;
    color: var(--gray);
}

.contact-page-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    align-items: start;
}

/* Alert Messages */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 25px;
    border-radius: var(--radius);
    margin-bottom: 2rem;
}

.alert-success {
    background: var(--green-light);
    border: 2px solid var(--green);
}

.alert-error {
    background: #FFE5E5;
    border: 2px solid #E74C3C;
}

.alert-icon {
    font-size: 1.5rem;
}

.alert strong {
    display: block;
    margin-bottom: 5px;
    color: var(--dark);
}

.alert p {
    margin: 0;
    color: var(--gray);
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact-form .form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.contact-form .form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 1.5rem;
    padding-bottom: 0;
}

.contact-form .form-section h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(247, 148, 29, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group small.char-counter {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 5px;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #E74C3C;
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: var(--green);
}

/* Selected Products */
.selected-products {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 15px;
    min-height: 100px;
}

.no-products {
    text-align: center;
    color: var(--gray);
    padding: 20px;
}

.no-products a {
    color: var(--orange);
    text-decoration: underline;
}

.selected-product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    border-left: 4px solid var(--green);
}

.selected-product-item:last-child {
    margin-bottom: 0;
}

.product-item-info strong {
    display: block;
    color: var(--dark);
    font-size: 0.95rem;
}

.product-item-info span {
    font-size: 0.85rem;
    color: var(--gray);
}

.remove-product {
    width: 30px;
    height: 30px;
    border: none;
    background: #FFE5E5;
    color: #E74C3C;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.remove-product:hover {
    background: #E74C3C;
    color: white;
}

.estimated-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--orange-light);
    border-radius: 12px;
    margin-top: 15px;
}

.estimated-total span {
    font-weight: 600;
    color: var(--dark);
}

.estimated-total strong {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: var(--orange);
}

/* Checkbox Group */
.checkbox-group {
    margin-bottom: 0 !important;
}

.checkbox-label {
    display: flex !important;
    align-items: center !important;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.custom-checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition);
}

.custom-checkbox::after {
    content: '✓';
    color: white;
    font-size: 12px;
    opacity: 0;
}

.checkbox-label input[type="checkbox"]:checked + .custom-checkbox {
    background: var(--green);
    border-color: var(--green);
}

.checkbox-label input[type="checkbox"]:checked + .custom-checkbox::after {
    opacity: 1;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 30px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

.submit-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(247, 148, 29, 0.4);
}

.submit-btn .btn-icon {
    font-size: 1.2rem;
}

/* Sidebar Info Cards */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.info-card.highlight {
    background: var(--green);
    color: white;
}

.info-card.highlight h3 {
    color: white;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    font-size: 1.5rem;
}

.info-item strong {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
}

.info-item a,
.info-item span {
    color: var(--dark);
    font-weight: 600;
}

.info-item a:hover {
    color: var(--orange);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    padding: 2rem;
    background: var(--dark);
    color: white;
    text-align: center;
}

footer p {
    opacity: 0.7;
    font-size: 0.9rem;
}

footer a {
    color: var(--orange);
    transition: color 0.3s;
}

footer a:hover {
    color: var(--yellow);
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll margin for fixed header */
section[id] {
    scroll-margin-top: 100px;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

/* Large Tablets & Small Desktops */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-images {
        min-height: 350px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-page-content {
        grid-template-columns: 1fr;
    }

    .contact-info-sidebar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-images {
        max-width: 450px;
        margin: 2rem auto 0;
        min-height: 300px;
    }

    .hero-img-wrapper:nth-child(2),
    .hero-img-wrapper:nth-child(3) {
        transform: none;
    }

    .hero-img-wrapper:nth-child(2):hover,
    .hero-img-wrapper:nth-child(3):hover {
        transform: scale(1.05);
    }

    .cta-buttons {
        justify-content: center;
    }

    /* Mobile Navigation */
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 1rem;
        border-bottom: 1px solid var(--light-gray);
        text-align: center;
    }

    nav a::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .contact-info-sidebar {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    .logo img {
        height: 45px;
    }

    .hero {
        padding: 100px 1rem 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-images {
        max-width: 100%;
        min-height: 250px;
    }

    .section {
        padding: 3rem 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .category-card {
        padding: 1.5rem 1rem;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .category-card h3 {
        font-size: 1.1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-methods {
        flex-direction: column;
        align-items: center;
    }

    .contact-method {
        width: 100%;
        max-width: 350px;
    }

    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-page-header h1 {
        font-size: 1.8rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-images {
        grid-template-columns: 1fr 1fr;
        min-height: 200px;
        gap: 0.5rem;
    }

    .hero-img-wrapper img {
        padding: 8px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .product-info h3 {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .info-card {
        padding: 1.25rem;
    }
}

/* =============================================
   FLY TO CART ANIMATION
   ============================================= */
.flying-product {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes fly-to-cart {
    0% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.9;
    }
    100% {
        opacity: 0;
        transform: scale(0.2) rotate(360deg);
    }
}

/* =============================================
   ALERTS & NOTIFICATIONS
   ============================================= */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: #d4edda !important;
    border: 2px solid #28a745 !important;
    color: #155724 !important;
    padding: 20px !important;
    margin: 20px 0 !important;
    border-radius: 8px !important;
    font-size: 16px !important;
}

.alert-error {
    background: #f8d7da !important;
    border: 2px solid #dc3545 !important;
    color: #721c24 !important;
    padding: 20px !important;
    margin: 20px 0 !important;
    border-radius: 8px !important;
    font-size: 16px !important;
}

/* =============================================
   CONTRACT BANNER
   ============================================= */
.contract-banner {
    background: linear-gradient(135deg, #F7941D 0%, #8BC53F 100%);
    border-radius: 12px;
    padding: 25px 30px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.6s ease;
}

.contract-banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contract-icon {
    font-size: 48px;
    line-height: 1;
}

.contract-text {
    flex: 1;
    min-width: 250px;
}

.contract-text h3 {
    color: white;
    margin: 0 0 5px 0;
    font-size: 20px;
    font-weight: 700;
}

.contract-text p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-size: 14px;
}

.contract-btn {
    background: white;
    color: #F7941D;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.contract-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .contract-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .contract-btn {
        width: 100%;
        justify-content: center;
    }
}
