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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #cc78a500, #000000);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(135deg, #ffd700, #00bfff);
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.logo-svg {
    height: 90px;
    margin-right: 8px;
 
}

/* If no SVG available, fallback to icon */
.logo i {
    margin-right: 8px;
    background: white;
    color: #ff1493;
    padding: 8px;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide icon if SVG is available */
.logo img + i {
    display: none;
}

.search-bar {
    display: flex;
    flex: 1;
    max-width: 400px;
    margin: 0 2rem;
}

.search-bar input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 25px 0 0 25px;
    outline: none;
}

.search-bar button {
    padding: 10px 15px;
    background: white;
    border: none;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: white;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #140e11 0%, #ff69b4 50%, #1482ff 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
}

.hero-text {
    color: white;
    animation: slideInLeft 1s ease-out;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    max-width: 90%;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: slideInRight 1s ease-out;
}

.package-illustration {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.package-svg:hover {
    transform: scale(1.05) rotate(2deg);
}

.package-illustration::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 30px;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

.accessories {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    pointer-events: none;
}

.accessories::before,
.accessories::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

.accessories::before {
    top: 10%;
    left: -10%;
    animation-delay: -2s;
}

.accessories::after {
    bottom: 10%;
    right: -10%;
    animation-delay: -1s;
}

/* Add CTA Buttons to Hero */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn-primary {
    background: white;
    color: #ff1493;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.hero-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* Animations */
@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 pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

/* Mobile menu animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Categories */
.categories {
    padding: 3rem 0;
    background: #f8f9fa;
}

.category-slider {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.slider-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
}

.category-items {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    flex: 1;
    scroll-behavior: smooth;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Best Selling Products */
.best-selling {
    padding: 4rem 0;
}

.best-selling h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    width: 100%;
    height: 120px;
    border-radius: 15px;
}

/* Gradient Backgrounds */
.gradient-1 { background: linear-gradient(135deg, #ff9a9e, #fecfef); }
.gradient-2 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.gradient-3 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.gradient-4 { background: linear-gradient(135deg, #fa709a, #fee140); }
.gradient-5 { background: linear-gradient(135deg, #ffecd2, #fcb69f); }
.gradient-6 { background: linear-gradient(135deg, #667eea, #764ba2); }
.gradient-7 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.gradient-8 { background: linear-gradient(135deg, #4facfe, #00f2fe); }

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 3rem 0;
    margin: 4rem 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    gap: 2rem;
}

.banner-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 20px;
}

.banner-text h3 {
    font-size: 1.8rem;
    font-weight: normal;
}

/* Featured Products */
.featured-products {
    padding: 4rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    color: #333;
}

.filter-dropdown {
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
}

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

.featured-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.featured-item:hover {
    transform: translateY(-5px);
}

.item-image {
    height: 200px;
    border-radius: 15px 15px 0 0;
}

.gradient-pink { background: linear-gradient(135deg, #ff9a9e, #fecfef); }
.gradient-blue { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.gradient-dark { background: linear-gradient(135deg, #2c3e50, #34495e); }
.gradient-yellow { background: linear-gradient(135deg, #f093fb, #fee140); }
.gradient-notebook { background: linear-gradient(135deg, #ffecd2, #fcb69f); }
.gradient-black { background: linear-gradient(135deg, #000000, #434343); }
.gradient-business { background: linear-gradient(135deg, #8360c3, #2ebf91); }
.gradient-wood { background: linear-gradient(135deg, #d2691e, #8b4513); }
.gradient-mug { background: linear-gradient(135deg, #667eea, #764ba2); }
.gradient-colorful { background: linear-gradient(135deg, #fa709a, #fee140); }
.gradient-orange { background: linear-gradient(135deg, #ff9a9e, #fad0c4); }
.gradient-green { background: linear-gradient(135deg, #43e97b, #38f9d7); }

.item-info {
    padding: 1.5rem;
}

.item-info h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.price {
    color: #00bfff;
    font-weight: bold;
    font-size: 1.1rem;
}

.view-more {
    text-align: center;
    margin-top: 3rem;
}

.btn-view-more {
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-view-more:hover {
    transform: translateY(-2px);
}

/* Business Trust */
.business-trust {
    padding: 6rem 0;
    background: white;
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.trust-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.bbee-badge {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.trust-text p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item strong {
    font-size: 1.2rem;
    color: #333;
    display: block;
    margin-bottom: 0.2rem;
}

.contact-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Company Values Section */
.company-values {
    padding: 6rem 0;
    background: #f8f9fa;
}

.company-values h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 4rem;
}

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

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* WhatsApp Button Styling */
.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: white !important;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #20c05a;
    transform: translateY(-2px);
}

/* Contact Buttons */
.btn-contact-whatsapp,
.btn-contact-email,
.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.btn-contact-whatsapp {
    background: #25d366;
    color: white;
}

.btn-contact-whatsapp:hover {
    background: #20c05a;
    transform: translateY(-2px);
}

.btn-contact-email {
    background: #007bff;
    color: white;
}

.btn-contact-email:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.btn-contact {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-contact:hover {
    background: linear-gradient(135deg, #ff1493, #e91e63);
    transform: translateY(-2px);
}

/* Footer Styling */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #ecf0f1;
    font-size: 1.2rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ff69b4;
}

.newsletter {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    outline: none;
    font-size: 0.9rem;
}

.newsletter button {
    padding: 12px 20px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter button:hover {
    background: linear-gradient(135deg, #ff1493, #e91e63);
    transform: translateY(-2px);
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: #ff69b4;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: 0.9rem;
    color: #ecf0f1;
}

.copyright {
    font-size: 0.8rem;
    color: #95a5a6;
    line-height: 1.5;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

/* Corporate Account Section */
.corporate-account {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.corporate-account::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: linear-gradient(135deg, #ffd700, #00bfff);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.corporate-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.corporate-text {
    flex: 1;
    color: white;
}

.corporate-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.corporate-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.corporate-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.corporate-illustration {
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.corporate-icon {
    font-size: 4rem;
    color: white;
    font-weight: bold;
}

/* Search Bar Improvements */
.search-bar {
    position: relative;
}

.search-bar input {
    padding-right: 50px;
    font-size: 0.9rem;
}

.search-bar input:focus {
    box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.2);
}

.search-bar button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff1493;
    transition: all 0.3s ease;
}

.search-bar button:hover {
    background: #ff1493;
    color: white;
}

/* Search Suggestions */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.search-suggestion {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-suggestion:hover {
    background: #f8f9fa;
}

.search-suggestion:last-child {
    border-bottom: none;
}

.search-suggestion strong {
    color: #ff1493;
    display: block;
    margin-bottom: 0.3rem;
}

.search-suggestion p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

/* Contact Section ID for smooth scrolling */
#contact {
    scroll-margin-top: 100px;
}

/* Improved mobile navigation */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: white;
    transition: all 0.3s ease;
}

/* Mobile Menu Improvements */
.mobile-menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    background: none;
    border: none;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.mobile-menu-toggle.active {
    transform: rotate(90deg);
}

@media (max-width: 968px) {
    .header {
        position: relative;
        z-index: 1000;
    }
    
    .navbar {
        flex-wrap: wrap;
        padding: 1rem 0;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .navbar > * {
        order: 0;
    }
    
    .logo {
        order: 1;
        flex: 0 0 auto;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 3;
        flex: 0 0 auto;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
    }
    
    .search-bar {
        order: 4;
        width: 100%;
        max-width: none;
        margin: 1rem 0 0 0;
        flex: 1 1 100%;
    }
    
    .nav-links {
        order: 5;
        display: none;
        width: 100%;
        flex-direction: column;
        background: rgba(255, 20, 147, 0.98);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 1.5rem;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(15px);
        z-index: 999;
        gap: 0.5rem;
        align-items: stretch;
        margin: 0 -20px;
    }
    
    .nav-links.active {
        display: flex;
        animation: slideDown 0.4s ease-out;
    }
    
    .nav-links a {
        display: block;
        padding: 14px 20px;
        border-radius: 10px;
        transition: all 0.3s ease;
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        color: white;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .user-actions {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        flex: 0 0 auto;
    }
    
    .whatsapp-btn {
        background: #25d366;
        padding: 12px 24px;
        border-radius: 25px;
        font-weight: 600;
        color: white !important;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        justify-content: center;
        min-width: 180px;
        transition: all 0.3s ease;
    }
    
    .whatsapp-btn:hover {
        background: #20c05a;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    }
    
    .search-bar input {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 20px;
        border-radius: 25px;
        border: none;
        outline: none;
        width: 100%;
    }
    
    .search-bar button {
        position: absolute;
        right: 5px;
        top: 5px;
        bottom: 5px;
        background: #ff1493;
        color: white;
        border: none;
        border-radius: 20px;
        padding: 0 15px;
        cursor: pointer;
        transition: background 0.3s ease;
    }
    
    .search-bar button:hover {
        background: #e91e63;
    }
}

/* Improved mobile tablet layout */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .logo-svg {
        height: 55px;
    }
    
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .nav-links {
        padding: 1.25rem;
        gap: 0.4rem;
        margin: 0 -15px;
    }
    
    .nav-links a {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
    
    .search-bar {
        margin: 0.8rem 0 0 0;
    }
    
    .search-bar input {
        padding: 10px 18px;
        font-size: 15px;
    }
    
    .search-bar button {
        padding: 0 12px;
    }
    
    .whatsapp-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 160px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .navbar {
        padding: 0.6rem 0;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .logo-svg {
        height: 45px;
    }
    
    .mobile-menu-toggle {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    
    .nav-links {
        padding: 1rem;
        gap: 0.3rem;
        margin: 0 -12px;
        border-radius: 0 0 12px 12px;
    }
    
    .nav-links a {
        padding: 10px 16px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .search-bar {
        margin: 0.6rem 0 0 0;
    }
    
    .search-bar input {
        padding: 9px 16px;
        font-size: 14px;
    }
    
    .search-bar button {
        padding: 0 10px;
        right: 4px;
        top: 4px;
        bottom: 4px;
    }
    
    .whatsapp-btn {
        padding: 9px 18px;
        font-size: 0.85rem;
        min-width: 140px;
    }
    
    .user-actions {
        padding-top: 0.8rem;
        margin-top: 0.8rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .nav-links.active {
        animation: none;
    }
    
    .mobile-menu-toggle:hover {
        transform: none;
    }
    
    .nav-links a:hover {
        transform: none;
    }
}

/* Touch improvements for mobile */
@media (hover: none) and (pointer: coarse) {
    .nav-links a {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .mobile-menu-toggle {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
    
    .whatsapp-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 50vh;
        padding: 1.5rem 0;
    }
    
    .hero-content {
        gap: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .package-illustration {
        max-width: 280px;
        height: 220px;
    }
}

/* Map Container Styling */
.map-container {
    margin-top: 1rem;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.map-container iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 15px;
    filter: contrast(1.1) saturate(1.2);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1rem;
    color: white;
}

.map-overlay p {
    margin: 0 0 0.5rem 0;
    font-size: 0.85rem;
    font-weight: 500;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.directions-btn:hover {
    background: linear-gradient(135deg, #ff1493, #e91e63);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
}

.directions-btn i {
    font-size: 0.7rem;
}

/* Footer responsive updates for map */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-container {
        margin-top: 1.5rem;
    }
    
    .map-container iframe {
        height: 180px;
    }
    
    .map-overlay {
        text-align: center;
    }
    
    .directions-btn {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .map-container iframe {
        height: 160px;
    }
    
    .map-overlay {
        padding: 0.8rem;
    }
    
    .map-overlay p {
        font-size: 0.75rem;
    }
    
    .directions-btn {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
}

/* Additional mobile optimizations */
@media (max-width: 768px) {
    .hero {
        background: linear-gradient(135deg, #ff1493 0%, #ff69b4 50%, #ff1493 100%);
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        min-height: auto;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .hero-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-width: 200px;
    }
    
    .package-illustration {
        max-width: 350px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
        padding: 1.5rem 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .package-illustration {
        max-width: 280px;
        height: 250px;
    }
}

/* Fix mobile menu overlay issues */
@media (max-width: 968px) {
    .nav-links.active {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 100vh;
        background: rgba(255, 20, 147, 0.98);
        z-index: 9999;
        padding: 80px 1.5rem 1.5rem;
        overflow-y: auto;
        margin: 0;
        border-radius: 0;
        justify-content: flex-start;
    }
    
    .nav-links.active a {
        margin-bottom: 0.5rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 10px;
    }
    
    .mobile-menu-toggle {
        position: relative;
        z-index: 10000;
    }
}

/* Better mobile layout for categories */
@media (max-width: 768px) {
    .categories {
        padding: 2rem 0;
    }
    
    .category-slider {
        gap: 1rem;
    }
    
    .category-items {
        gap: 1rem;
        padding: 0 1rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .category-items::-webkit-scrollbar {
        display: none;
    }
    
    .category-item {
        min-width: 90px;
        padding: 0.8rem 0.5rem;
        cursor: pointer;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .category-item span {
        font-size: 0.8rem;
        text-align: center;
        line-height: 1.2;
    }
}

/* Footer Bottom Section */
.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.footer-bottom .developer-credit {
    font-size: 0.85rem;
    color: #bdc3c7;
    margin: 0;
}

.footer-bottom .developer-credit a {
    color: #ff69b4;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom .developer-credit a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff69b4;
    transition: width 0.3s ease;
}

.footer-bottom .developer-credit a:hover {
    color: #ff1493;
}

.footer-bottom .developer-credit a:hover::after {
    width: 100%;
}

/* Mobile responsive for footer bottom */
@media (max-width: 768px) {
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .footer-bottom .copyright,
    .footer-bottom .developer-credit {
        font-size: 0.8rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
    
    .footer-bottom .copyright,
    .footer-bottom .developer-credit {
        font-size: 0.75rem;
    }
}