/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #ffffff;
    --black: #000000;
    --dark-blue: #1a237e;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --text-dark: #212121;
    --text-light: #757575;
    --accent-blue: #0d47a1;
    --sold-out: #8e8e93;
    --sold-out-bg: #f8f9fa;
    --sold-out-border: #e0e0e0;
    --available-tag: #4CAF50;
    --reserved-tag: #FF9800;
    --sold-tag: #ff6b6b;
    --available-bg: rgba(76, 175, 80, 0.1);
    --reserved-bg: rgba(255, 152, 0, 0.1);
    --sold-bg: rgba(255, 107, 107, 0.1);
    --highlight: #ffd700;
    --stat-bg: rgba(255, 255, 255, 0.1);
    --instagram-light: #4a5fc1;
    --instagram-hover: #5d6ec7;
    --nav-active: #0d47a1;
    --mobile-menu-bg: #ffffff;
    --mobile-menu-text: #212121;
    --mobile-menu-border: #e0e0e0;
    --price-color: #1a237e;
    --card-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    --card-hover-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    --modal-overlay: rgba(0, 0, 0, 0.8);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover {
    color: var(--dark-blue);
}

.nav-link.active {
    color: var(--dark-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--dark-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
    background: none;
    border: none;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--dark-blue);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--dark-blue);
}

/* Enhanced Cover Section */
.cover-section {
    margin-top: 70px;
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.cover-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.cover-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1551816230-ef5deaed4a26?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: kenBurns 20s infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cover-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.cover-badge {
    display: inline-block;
    background: var(--stat-bg);
    color: var(--highlight);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cover-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cover-title .highlight {
    color: var(--highlight);
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.cover-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cover-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--stat-bg);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 1.8rem;
    color: var(--highlight);
}

.stat-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.4);
    color: var(--white);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Sections Common Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Featured Products */
.featured {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Product Card */
.product-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-hover-shadow);
}

/* Status Badges */
.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.available {
    background: var(--available-tag);
}

.status-badge.reserved {
    background: var(--reserved-tag);
}

.status-badge.sold {
    background: var(--sold-tag);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--price-color);
    margin-bottom: 1rem;
}

.product-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Product Actions */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: auto;
}

.view-details-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: transparent;
    color: var(--dark-blue);
    border: 2px solid var(--dark-blue);
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.view-details-btn:hover {
    background: var(--dark-blue);
    color: var(--white);
}

.view-details-btn i {
    font-size: 1rem;
}

.order-now-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: var(--white);
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.order-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 43, 112, 0.3);
}

.order-now-btn i {
    font-size: 1rem;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--dark-blue);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 5px 20px rgba(26, 35, 126, 0.2);
}

.load-more-btn:hover {
    background: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.3);
}

.load-more-btn i {
    transition: transform 0.3s ease;
}

.load-more-btn:hover i {
    transform: rotate(90deg);
}

/* Loading Indicator */
.loading-indicator {
    text-align: center;
    padding: 3rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--light-gray);
    border-top-color: var(--dark-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-indicator p {
    color: var(--text-light);
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    margin: 2rem 0;
}

.no-results i {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.no-results h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.no-results p {
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Brand Story Section */
.brand-story {
    padding: 5rem 0;
    background-color: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text {
    padding-right: 2rem;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Inquiry Stats */
.inquiry-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.inquiry-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.inquiry-stat i {
    font-size: 2rem;
    color: var(--dark-blue);
}

.inquiry-stat h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.inquiry-stat p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.story-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: transparent;
    color: var(--dark-blue);
    border: 2px solid var(--dark-blue);
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.story-btn:hover {
    background-color: var(--dark-blue);
    color: var(--white);
}

.story-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.story-content:hover .story-image img {
    transform: scale(1.05);
}

/* Pricing Info Section */
.pricing-info {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.pricing-info .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-hover-shadow);
}

.pricing-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pricing-header i {
    font-size: 2rem;
    color: var(--dark-blue);
}

.pricing-header h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
}

.pricing-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section ul li a:hover {
    color: var(--white);
}

/* Contact Note in Footer */
.contact-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #FF9800;
    font-size: 0.9rem;
    margin-top: 1rem;
    padding: 0.5rem;
    background: rgba(255, 152, 0, 0.1);
    border-radius: 5px;
}

/* Social Icons in Footer */
.social-icons {
    margin-top: 1.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--instagram-light);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--instagram-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 95, 193, 0.3);
    color: var(--white);
}

.social-icon i {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-note {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-note i {
    margin-right: 0.5rem;
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--modal-overlay);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background-color: var(--white);
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--medium-gray);
    position: sticky;
    top: 0;
    background-color: var(--white);
    z-index: 1;
}

.modal-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.modal-close:hover {
    background-color: var(--light-gray);
    color: var(--text-dark);
    transform: rotate(90deg);
}

.modal-content {
    padding: 2rem;
}

.modal-image {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--price-color);
    margin-bottom: 1rem;
}

.modal-status {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.modal-status.available {
    background: var(--available-tag);
}

.modal-status.reserved {
    background: var(--reserved-tag);
}

.modal-status.sold {
    background: var(--sold-tag);
}

.modal-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.modal-specs h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.modal-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.modal-spec-item {
    padding: 0.8rem;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.modal-spec-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.modal-spec-item span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.modal-note {
    padding: 1rem;
    background-color: rgba(255, 152, 0, 0.1);
    border-radius: 8px;
    border-left: 4px solid #FF9800;
    margin-top: 2rem;
}

.modal-note p {
    color: #FF9800;
    margin: 0;
    font-size: 0.95rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-actions .view-details-btn {
    flex: 1;
}

.modal-actions .order-now-btn {
    flex: 1;
}

/* Mobile Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design - FIXED FOR MOBILE COVER SECTION */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .cover-title {
        font-size: 2.5rem;
    }
    
    .cover-stats {
        gap: 1.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-text {
        padding-right: 0;
        text-align: center;
    }
    
    .story-image {
        height: 350px;
        order: -1;
    }
    
    .pricing-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Mobile Menu - Full Screen Overlay - FIXED COVER SECTION */
@media (max-width: 768px) {
    .cover-section {
        height: auto;
        min-height: auto;
        padding: 2rem 0;
        margin-top: 70px;
    }
    
    .cover-container {
        height: auto;
        min-height: 500px;
    }
    
    .cover-overlay {
        position: relative;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
        padding: 3rem 1.5rem;
        min-height: 500px;
        display: flex;
        align-items: center;
    }
    
    .cover-content {
        width: 100%;
        padding: 0;
    }
    
    .cover-title {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .cover-subtitle {
        font-size: 1.1rem;
        padding: 0;
        margin-bottom: 2.5rem;
        line-height: 1.5;
    }
    
    /* FIXED: Mobile stats layout */
    .cover-stats {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2.5rem;
        align-items: center;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stat-item {
        width: 100%;
        max-width: 280px;
        justify-content: flex-start;
        padding: 1rem;
        margin: 0 auto;
    }
    
    .stat-content {
        text-align: left;
        flex-grow: 1;
    }
    
    .stat-item i {
        font-size: 1.5rem;
        flex-shrink: 0;
    }
    
    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        width: auto;
        display: inline-flex;
        margin-top: 0.5rem;
    }
    
    /* Full Screen Mobile Menu */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        height: 100vh;
        text-align: left;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: none;
        padding: 80px 0 0 0;
        gap: 0;
        z-index: 999;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu.active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 70px;
        background-color: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        color: var(--text-dark);
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        font-weight: 500;
        border-left: 4px solid transparent;
        transition: all 0.3s ease;
        text-align: left;
        position: relative;
        z-index: 2;
    }
    
    .nav-link:hover {
        color: var(--dark-blue);
        background-color: rgba(26, 35, 126, 0.05);
        border-left-color: var(--dark-blue);
    }
    
    .nav-link.active {
        color: var(--dark-blue);
        background-color: rgba(26, 35, 126, 0.08);
        border-left-color: var(--dark-blue);
        font-weight: 600;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .story-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .product-card {
        margin: 0 auto;
        max-width: 350px;
    }
    
    .modal-container {
        margin: 20px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}

/* Small Mobile Devices - Further optimized */
@media (max-width: 480px) {
    .cover-section {
        padding: 1.5rem 0;
        margin-top: 70px;
    }
    
    .cover-overlay {
        padding: 2.5rem 1rem;
        min-height: 450px;
    }
    
    .cover-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .cover-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .cover-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .cover-stats {
        gap: 0.8rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .stat-item {
        max-width: 100%;
        padding: 0.8rem 1rem;
    }
    
    .stat-item i {
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
        margin-top: 0.5rem;
    }
    
    .product-content h3 {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .inquiry-stat i {
        font-size: 1.5rem;
    }
    
    .social-icon {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
    
    .nav-link {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .modal-image {
        height: 200px;
    }
    
    .products-grid {
        padding: 0 0.5rem;
        gap: 1.5rem;
    }
}

/* Additional Animations */
.product-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Scrollbar */
.modal-container::-webkit-scrollbar {
    width: 8px;
}

.modal-container::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 4px;
}

.modal-container::-webkit-scrollbar-thumb {
    background: var(--medium-gray);
    border-radius: 4px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

/* Product Grid Mobile Optimization */
@media (max-width: 768px) {
    .products-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .product-card {
        width: 100%;
        max-width: 350px;
    }
}

/* Ensure proper spacing on all mobile devices */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .featured {
        padding: 3rem 0;
    }
}