/* General Styles */
:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --text-color: #0f3460;
    --light-bg: #f7f7f7;
    --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 15px 30px rgba(233, 69, 96, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 76px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--text-color);
    background: var(--light-bg);
}

/* Main Content */
main {
    flex: 1 0 auto;
}

/* Navbar Styles */
.navbar {
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.navbar-brand img:hover {
    transform: scale(1.1);
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Hero Slider Styles */
.hero-slider {
    height: calc(100vh - 76px);
    position: relative;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
}

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

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.5);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.5rem;
}

/* Products Styles */
.product-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    background: white;
    box-shadow: var(--card-shadow);
}

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

.product-card img {
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-card .card-body {
    padding: 2rem;
}

.product-card .card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.badge {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 50px;
}

.btn-outline-primary {
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    border-width: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* About Section Styles */
#about {
    background-color: white;
    padding: 5rem 0;
}

#about img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    flex-shrink: 0;
    width: 100%;
    padding: 3rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), transparent);
}

footer img {
    max-width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

footer p {
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

footer i {
    margin-right: 10px;
    color: var(--accent-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
    }

    .swiper-slide-content {
        padding: 2rem;
        margin: 0 1rem;
    }

    .swiper-slide-content h2 {
        font-size: 2rem;
    }

    .product-card {
        margin-bottom: 2rem;
    }

    .product-card img {
        height: 250px;
    }

    footer {
        text-align: center;
        padding: 2rem 0;
    }

    footer .text-md-end {
        text-align: center !important;
        margin-top: 2rem;
    }

    footer img {
        max-width: 120px;
        margin-bottom: 1.5rem;
    }

    footer .row > div {
        margin-bottom: 1.5rem;
    }

    footer .row > div:last-child {
        margin-bottom: 0;
    }
}

/* Animation Styles */
.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.2);
}

.btn-primary:hover {
    background-color: #d63851;
    border-color: #d63851;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(233, 69, 96, 0.3);
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Additional Hover Effects */
.feature-list li {
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(10px);
}

.specs-table tr {
    transition: background-color 0.3s ease;
}

.specs-table tr:hover {
    background-color: rgba(233, 69, 96, 0.05);
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.03), rgba(22, 33, 62, 0.05));
}

.contact-icon-box {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.contact-icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-icon-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.contact-icon-box:hover::before {
    opacity: 1;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.contact-icon-box:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon-box h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-icon-box p {
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

/* FAQ Section Styles */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: var(--hover-shadow);
}

.accordion-button {
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    background: white;
}

.accordion-button:not(.collapsed) {
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.accordion-button::after {
    background-size: 1.2rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    background: rgba(233, 69, 96, 0.03);
}

/* Contact Form Styles */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    margin-top: 3rem;
}

.form-control {
    border: 2px solid #eee;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(233, 69, 96, 0.1);
}

.form-label {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

textarea.form-control {
    min-height: 150px;
}

/* Map Section */
.map-section {
    height: 400px;
    margin-top: 4rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

/* Responsive Styles for Contact Page */
@media (max-width: 768px) {
    .contact-icon-box {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .map-section {
        height: 300px;
        margin-top: 2rem;
    }

    .faq-section {
        padding: 3rem 0;
    }

    .accordion-button {
        padding: 1.2rem;
        font-size: 1rem;
    }

    .accordion-body {
        padding: 1.2rem;
        font-size: 1rem;
    }
}

/* Button Styles */
.btn {
    text-transform: none !important;
} 