* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 123, 191, 0.2);
}

.logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 123, 191, 0.4);
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover {
    color: #000;
    background: yellow;
    transform: translateY(-2px);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #007bbf;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Shop Slider */
.shop-slider {
    width: 100%;
    height: 100vh;
    position: relative;
    margin-top: 70px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.slide {
    width: 25%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.slide-text {
    position: relative;
    z-index: 2;
    color: #333;
    max-width: 800px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: slideTextIn 1s ease-out;
}

.slide-text h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #000;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slide-text p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #666;
    line-height: 1.6;
}

.slide-btn {
    padding: 18px 40px;
    font-size: 16px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.5);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 3rem;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.9);
    border: none;
    border-radius: 50%;
    color: #333;
    font-size:16px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: #ffd700;
    transform: scale(1.15);
    box-shadow: 0 20px 45px rgba(255, 215, 0, 0.6);
}

.slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    z-index: 10;
}

.dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.dot.active {
    background: #ebb52f;
    border-color: white;
    box-shadow: 0 0 20px rgb(235 181 47 / 94%);
    transform: scale(1.3);
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    color: #020202;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 4px;
    background: linear-gradient(45deg, #cc232a, #ecb52f);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 123, 191, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #cc232a;
    box-shadow: 0 25px 50px rgba(0, 123, 191, 0.2);
}

.service-card i {
    font-size: 3.5rem;
    color: #ebb52f;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.2);
    text-shadow: 0 0 20px rgb(235 181 47 / 63%);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-btn {
    padding: 12px 30px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.service-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.card-glow {
    display: none;
}

/* Store Section */
.store {
    padding: 120px 0;
    background: white;
}

.store-description {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.store-item {
    position: relative;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid rgba(0, 123, 191, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.store-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #cc232a;
    box-shadow: 0 25px 50px rgba(0, 123, 191, 0.2);
}

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

.store-item:hover .store-image {
    transform: scale(1.1);
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffd8 0%, #ffffd8  100%);
}

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

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #000;
}

.about-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #ebb52f;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-size: 1rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-shop-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-shop-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 4rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #ffffd8;
    border-radius: 15px;
    border: 1px solid rgba(0, 123, 191, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    border-color: #ebb52f;
    box-shadow: 0 10px 25px #ffffd8;
}

.contact-item i {
    font-size: 2rem;
    color: #cb2228;
    margin-right: 1.5rem;
    width: 40px;
}

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

.contact-item p {
    color: #666;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 18px;
    border: 2px solid rgb(229 229 229 / 50%);
    border-radius: 15px;
    font-size: 1rem;
    background: white;
    color: #333;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #007bbf;
    box-shadow: 0 0 20px rgba(0, 123, 191, 0.2);
    transform: translateY(-2px);
}

.submit-btn {
    padding: 18px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 123, 191, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-logo-image:hover {
    transform: scale(1.05);
}

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

.social-links a {
       display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ebb52f, #ffd700);
    color: #cc232a;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 17px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 123, 191, 0.1);
    color: #ccc;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    animation: modalFadeIn 0.3s ease;
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 3rem;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
    border: 2px solid #007bbf;
    color: #333;
    animation: modalSlideIn 0.3s ease;
}

.gallery-modal-content {
    max-width: 800px;
}

.image-modal-content {
    max-width: 90%;
    max-height: 90%;
    padding: 1rem;
}

.image-modal-content img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.close {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 2.5rem;
    cursor: pointer;
    color: #007bbf;
    transition: color 0.3s ease;
}

.close:hover {
    color: #0099ff;
    transform: scale(1.2);
}

/* Animations */
@keyframes slideTextIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes modalFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid rgba(0, 123, 191, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active { left: 0; }
    
    .shop-slider { height: 70vh; }
    
    .slide-text h2 { font-size: 2.5rem; }
    .slide-text p { font-size: 1.1rem; }
    .slide-btn { padding: 15px 30px; font-size: 1rem; }
    
    .nav-btn { width: 60px; height: 60px; font-size: 1.5rem; }
    .slider-nav { padding: 0 2rem; }
    .slider-dots { bottom: 2rem; }
    .dot { width: 15px; height: 15px; }
    
    .section-title { font-size: 2.5rem; }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats { justify-content: center; flex-wrap: wrap; }
    .footer-content { flex-direction: column; gap: 2rem; }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 2rem;
    }
    
    .image-placeholder {
        width: 280px;
        height: 280px;
    }
    
    .store-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .store-item {
        height: 220px;
    }
}