:root {
    --primary-color: #2563eb;
    --navy: #0f172a;
    --orange: #f97316;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--navy);
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary-color), #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */
.navbar { transition: all 0.3s ease; padding: 1.5rem 0; }
.navbar-brand span { color: var(--primary-color); }
.btn-cta {
    background: var(--primary-color);
    color: white !important;
    border-radius: 50px;
    padding: 0.5rem 1.5rem !important;
}

/* Hero */
.hero-section {
    min-height: calc(100svh - 90px); /* accounts for fixed navbar */
    padding-top: 90px;
    display: flex;
    align-items: center;
}

.status-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #eff6ff;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}
.hero-image-stack { position: relative; }
.floating-card {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: white;
    border-radius: 20px;
    width: 200px;
}
.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.bg-light-soft { background-color: #fcfdfe; }

.accent-line {
    width: 60px;
    height: 4px;
    background-color: #2563eb;
    border-radius: 10px;
}

/* Inventory Card Styling */
.inventory-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    border: 1px solid #edf2f7;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.inventory-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #2563eb50;
}

.inventory-img-wrap {
    height: 220px;
    overflow: hidden;
    background: #f8fafc;
}

.inventory-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image isn't distorted */
    transition: transform 0.5s ease;
}

.inventory-card:hover .inventory-img-wrap img {
    transform: scale(1.05);
}

.inventory-body {
    padding: 24px;
    text-align: left;
}

.inventory-body h5 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.inventory-body p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 20px;
    min-height: 40px; /* Keeps buttons aligned */
}

.inventory-btn {
    display: inline-flex;
    align-items: center;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.inventory-btn i {
    margin-left: 8px;
    font-size: 0.8rem;
}

.inventory-btn:hover {
    color: #1e40af;
    gap: 12px; /* Subtle movement of the arrow */
}
/* Service Tags */
.loc-tag {
    background: #f1f5f9;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.divider {
    width: 80px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 10px;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float i { font-size: 24px; margin-right: 10px; }

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.05);
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-float span { display: none; } /* On mobile, show only the icon */
    .whatsapp-float { padding: 15px; border-radius: 50%; }
    .whatsapp-float i { margin-right: 0; }
}
/* ===========================
   UNIVERSAL RESPONSIVENESS
   =========================== */

/* Prevent horizontal scroll on all devices */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Responsive container padding */
@media (max-width: 1400px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Tablets (iPad, Surface, etc.) */
@media (max-width: 1024px) {

    .hero-section {
        padding-top: 110px;
        min-height: auto;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .inventory-img-wrap {
        height: 200px;
    }

    iframe {
        width: 100% !important;
        height: 350px !important;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .navbar-brand {
        font-size: 1.25rem;
    }

    .navbar-collapse {
        background: #ffffff;
        border-radius: 20px;
        padding: 1rem;
        margin-top: 1rem;
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }

    .navbar-nav {
        gap: 0.5rem;
    }

 

    .hero-section {
        padding-top: 80px;
        padding-bottom: 24px;
    }

    .hero-section h1 {
        margin-bottom: 8px;
    }

    .hero-section p {
        margin-bottom: 16px;
    }



    .hero-section .btn {
        width: 100%;
    }

    .floating-card {
        display: none; /* avoids overlap on small screens */
    }

    #contact .d-flex {
        flex-direction: column;
    }

    #contact .btn {
        width: 100%;
    }
}

/* Extra small phones */
@media (max-width: 480px) {

    .display-3 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.6rem;
    }

    .inventory-img-wrap {
        height: 170px;
    }
}

section {
    overflow-y: visible;
}
