/*====================================================
    Global Styles & Design System
====================================================*/

:root {
    --font-family-sans-serif: 'Poppins', sans-serif;
    --primary-color: #2962FF;
    /* Energetic Blue */
    --secondary-color: #6c757d;
    --accent-color: #FF6D00;
    /* Energetic Orange */
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --border-color: #dee2e6;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    --card-hover-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

body {
    font-family: var(--font-family-sans-serif);
    background-color: #f4f7fc;
    color: var(--dark-gray);
}

.dark-mode body {
    background-color: #121212;
    color: var(--light-gray);
}

/*====================================================
    Typography
====================================================*/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

/*====================================================
    Buttons
====================================================*/

.btn {
    border-radius: 50px;
    font-weight: 500;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #0045d9;
    border-color: #0045d9;
    transform: translateY(-3px);
}

/*====================================================
    Product Card
====================================================*/

.product-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

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

.product-card .card-img-top {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.product-card .card-body {
    padding: 25px;
}

.product-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-card .card-text {
    color: var(--secondary-color);
}

.product-card .btn {
    width: 100%;
}

/*====================================================
    Homepage Hero Section
====================================================*/

.hero-section {
    background: linear-gradient(135deg, #2962FF, #00B0FF);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero-section .lead {
    font-size: 1.25rem;
}

/*====================================================
    Why Choose Us Section
====================================================*/

.why-choose-us-section .feature-box {
    padding: 40px 20px;
    border-radius: 15px;
    background-color: #ffffff;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.why-choose-us-section .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
}

.why-choose-us-section .feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
}

/*====================================================
    Inquiry Buttons
====================================================*/

.floating-contact-btn {
    background: linear-gradient(45deg, #2962FF, #FF6D00);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 82, 255, 0.3);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-contact-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 82, 255, 0.4);
    animation-play-state: paused;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 20px rgba(0, 82, 255, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 30px rgba(0, 82, 255, 0.4);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 20px rgba(0, 82, 255, 0.3);
    }
}

.btn-modern {
    background: linear-gradient(45deg, #2962FF, #FF6D00);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0, 82, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-modern:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 82, 255, 0.4);
}

/*====================================================
    Island Navbar
====================================================*/

.navbar-island {
    position: sticky;
    top: 20px;
    max-width: 90%;
    margin: 0 auto;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.dark-mode .navbar-island {
    background-color: rgba(26, 26, 26, 0.8);
}

.navbar-island.navbar-scrolled {
    top: 10px;
    max-width: 95%;
}

/*====================================================
    Product Card V2
====================================================*/

.product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-card .card-body {
    padding: 20px;
}

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

.product-card .card-text {
    color: #6c757d;
    font-size: 0.9rem;
}

.product-card .quick-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #e9ecef;
}

.product-card:hover .quick-actions {
    transform: translateY(0);
}

.dark-mode .product-card .quick-actions {
    background-color: rgba(26, 26, 26, 0.95);
    border-top: 1px solid #444;
}