/* Variables */
:root {
    --yellow: #FFD700;
    --yellow-light: #FFE44D;
    --yellow-dark: #FFC000;
    --white: #ffffff;
    --light: #F8F9FA;
    --light-gray: #E9ECEF;
    --gray: #6C757D;
    --dark: #212529;
    --funky-gradient: linear-gradient(45deg, var(--yellow), var(--yellow-light));
    --funky-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: var(--dark);
    padding-top: 76px;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--yellow);
    padding: 0.8rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    color: var(--dark);
    font-weight: 700;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    padding: 5px 10px;
    border-radius: 50px;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.brand-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: var(--funky-shadow);
}

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

.nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    position: relative;
}

.nav-link-wrapper {
    position: relative;
    padding: 5px 0;
}

.nav-text {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.nav-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--funky-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.nav-link:hover .nav-line {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover .nav-text {
    color: var(--yellow-dark);
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 180px);
    padding: 40px 0;
}

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 3px solid transparent;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--funky-gradient);
    z-index: -1;
    border-radius: 23px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--funky-shadow);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.product-image-wrapper {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 1.5rem;
    background: var(--white);
    position: relative;
    border-top: 2px solid var(--light-gray);
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
    transition: all 0.3s ease;
}

.product-card:hover .product-title {
    color: var(--yellow-dark);
    transform: scale(1.05);
}

.product-description {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

/* Forms */
.form-control {
    background: var(--white);
    border: 2px solid var(--light-gray);
    color: var(--dark);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--yellow);
    box-shadow: var(--funky-shadow);
}

/* Buttons */
.btn {
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--funky-gradient);
    transition: all 0.3s ease;
    opacity: 0;
}

.btn:hover::after {
    opacity: 1;
    bottom: 0;
}

.btn-primary {
    background: var(--funky-gradient);
    border: none;
    color: var(--dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--funky-shadow);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    color: var(--dark);
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding: 0 15px;
}

.section-title h2::before,
.section-title h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 3px;
    background: var(--funky-gradient);
    transform: translateY(-50%);
}

.section-title h2::before {
    left: -30px;
}

.section-title h2::after {
    right: -30px;
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 1rem auto 0;
}

/* Footer */
.footer {
    background: var(--white);
    padding: 40px 0;
    border-top: 3px solid var(--yellow);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer-info {
    padding: 20px;
    background: var(--light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.footer-info:hover {
    transform: translateY(-5px);
    box-shadow: var(--funky-shadow);
}

.footer-title {
    color: var(--dark);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--funky-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-address,
.footer-contact {
    color: var(--gray);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-company {
    padding: 20px;
    background: var(--light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.footer-company:hover {
    transform: translateY(-5px);
    box-shadow: var(--funky-shadow);
}

.footer-company h5 {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-slogan {
    color: var(--yellow-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-copyright {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        border-radius: 15px;
        margin-top: 1rem;
        border: 2px solid var(--yellow);
    }
}

@media (max-width: 767.98px) {
    .main-content {
        padding: 20px 0;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer [class*="text-md-"] {
        text-align: center !important;
    }
    
    .footer-info,
    .footer-company {
        margin-bottom: 1rem;
    }
}