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

body {
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #f8fafb;
    color: #002347; 
    line-height: 1.6;
    overflow-x: hidden;
}


/* ======================================= Start of Navigation ======================================= */
nav {
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 7px 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(26, 121, 176, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
}

.nav-logo {
    color: #1a79b0; 
    font-size: 26px; 
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -1px;
}

.nav-logo span {
    color: #71b345;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #002347;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.nav-links i, 
.footer-icon-small {
    color: #71b345; 
}



.nav-links a.active {
    color: #71b345;     
    font-weight: 700;         
    border-bottom: 2px solid #71b345; 
}

.nav-links .hover:hover {
    color: #71b345;            
    border-bottom: 2px solid #71b345;
}

.nav-account-btn:hover {
    color: #71b345;            
    border-bottom: 2px solid #71b345;
}



.nav-cart-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #002347; 
    background: transparent;
}

.nav-cart-wrapper:hover {
    background: #f0fdf4; 
    color: #71b345;
    transform: translateY(-1px);
}

.cart-icon-container {
    position: relative;
    font-size: 20px; 
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #f59e0b;
    color: white;
    font-size: 10px;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 2px solid #ffffff; 
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
}

.cart-badge:empty {
    display: none;
}


/* ===================================== BRAND ICON: CareMed =====================================  */

.nav-logo-wrapper {
    display: flex;
    align-items: center; 
    text-decoration: none;
}

.brand-icon-plus {
    position: relative;
    width: 32px;
    height: 32px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    justify-content: center;
    flex-direction: column;
    width: 30px;
    height: 30px;
}


.brand-icon-plus.sm {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.box {
    position: absolute;
    width: 45%;
    height: 45%;
    border-radius: 20%;
    transition: all 0.2s ease;
        box-shadow: 
        inset 0 2px 4px rgba(255, 255, 255, 0.2), 
        inset 0 -3px 5px rgba(0, 0, 0, 0.1);   
}


.box.blue { 
    background: linear-gradient(135deg, #1C8BC9 0%, #1A79B0 100%); 
}
.box.green { 
    background: linear-gradient(135deg, #7DC54B 0%, #71B345 100%); 
}



.box.top { 
    top: 0; 
    left: 27.5%; 
    z-index: 2;
}

.box.bottom { 
    bottom: 0; 
    left: 27.5%; 
    z-index: 1; 
}

.box.left { 
    top: 27.5%; 
    left: 0; 
    z-index: 2; 
}

.box.right { 
    top: 27.5%; 
    right: 0; 
    z-index: 1; 
}

.main-logo-dark, .form-logo, .main-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 800;
}

@media (max-width: 768px) {
    .brand-icon-plus {
        width: 28px;
        height: 28px;
        margin-right: 10px;
    }
    
    .main-logo-dark, .form-logo, .main-logo {
        font-size: 24px; 
    }

    .profile-grid {
        grid-template-columns: 1fr;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .profile-section {
        padding-top: 100px;
    }
    .desktop-only-specs {
        display: none !important;
    }
    
    .product-card {
        padding-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .brand-icon-plus {
        width: 24px;
        height: 24px;
        margin-right: 8px;
    }

    .brand-icon-plus.sm {
        width: 18px;
        height: 18px;
    }
    
    .box {

        box-shadow: 
            inset 0 1px 2px rgba(255, 255, 255, 0.2), 
            inset 0 -1.5px 3px rgba(0, 0, 0, 0.1);
    }
        .brand-icon-plus {
        width: 24px;
        height: 24px;
        margin-right: 8px;
    }

    .brand-icon-plus.sm {
        width: 18px;
        height: 18px;
    }
    
    .box {

        box-shadow: 
            inset 0 1px 2px rgba(255, 255, 255, 0.2), 
            inset 0 -1.5px 3px rgba(0, 0, 0, 0.1);
    }

    .pricing-container {
        height: 85px; 
        padding: 8px;
    }
    .price-amount {
        font-size: 0.95rem; 
    }
}


/* ===================================== END BRAND ICON: CareMed =====================================  */


.auth-only {
    display: none !important;
}

.guest-only {
    display: flex !important;
}

body.logged-in .auth-only {
    display: flex !important;
}

body.logged-in .guest-only {
    display: none !important;
}

body.logged-in .dropdown-menu {
    display: none !important;
}

body.logged-in .dropdown-menu.show {
    display: flex !important;
    flex-direction: column;
}

.nav-shop-link {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #1a79b0; 
}

.nav-account-btn {
    color: #002347;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}


.nav-cta-btn {
    background-color: #002347; 
    color: white !important;
    padding: 10px 28px; 
    border-radius: 8px; 
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-cta-btn:hover {
    background-color: #1a79b0; 
    transform: translateY(-1px);
}

.mobile-account-btn {
    background: #f8fafc;
    color: #002347 !important;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
}

.user-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.user-photo-img, 
.icon-placeholder {
    animation: fadeInAvatar 0.4s ease-out;
}

@keyframes fadeInAvatar {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

img.user-photo-img {
    position: relative;
}

img.user-photo-img:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8fafc;
    z-index: 2;
}

.login-link-mobile.guest-only {
    margin: 15px;
    padding: 12px 20px;
    background-color: #002347;
    color: white !important;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.login-link-mobile.guest-only i {
    margin-right: 10px;
    font-size: 1.1rem;
    color: white;
}

.login-link-mobile.guest-only:hover {
    background-color: #1a79b0;
    transform: translateY(-2px);
}

.login-link-mobile.guest-only:active {
    transform: translateY(0);
}

.mobile-user-info.guest-only {
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 10px;
}

/*---------------------- START OF USER-AVATAR STYLE -------------------------------*/

.icon-placeholder {
    color: #71b345; 
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.user-avatar, 
.profile-avatar-large, 
#imagePreview {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; 
    background-color: #f8fafc; 
    border-radius: 50%;
    flex-shrink: 0;
    aspect-ratio: 1 / 1; 
    border: 2px solid rgba(26, 121, 176, 0.1);
}

.user-avatar .icon-placeholder {
    font-size: 38px; 
}

.profile-avatar-large .icon-placeholder {
    font-size: 100px; 
}

#imagePreview .icon-placeholder {
    font-size: 110px; 
}

/*---------------------- END OF USER-AVATAR STYLE -------------------------------*/

.logout-link-mobile {
    color: #e63946 !important;
}

.login-btn {
    background: #002347; 
    color: white !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 35, 71, 0.2);
    border: none;
}

.login-btn:hover {
    background: #1a79b0; 
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 121, 176, 0.3);
}

.login-btn:active {
    transform: translateY(0);
}

.logout-btn {
    background: #f8fafb;
    color: #002347 !important;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #002347;
    font-weight: 600;
    font-size: 13px;
    transition: 0.3s ease;
}

.logout-btn:hover {
    background: #002347;
    color: white !important;
}

.hamburger-icon {
    display: none;
    cursor: pointer;
    color: #002347;
    padding: 5px;
    transition: 0.2s;
}

.hamburger-icon:hover {
    background: #f8fafc;
    border-radius: 8px;
}

.side-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: white;
    z-index: 3000;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.drawer-links a {
    text-decoration: none;
    color: #002347;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    transition: 0.3s;
}

.drawer-links a:hover {
    background: #f0f7ff;      
    color: #1a79b0;          
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 35, 71, 0.4);
    z-index: 2500;
    display: none;
    backdrop-filter: blur(4px);
}

#nav-toggle:checked~.side-drawer {
    right: 0;
}

#nav-toggle:checked~.drawer-overlay {
    display: block;
}

@media screen and (max-width: 768px) {
    .hamburger-icon {
        display: block;
    }

    .nav-links {
        display: none;
    }

    nav {
        padding: 10px 5%;
    }

    .mobile-user-info {
        display: flex;
    }

    .user-profile-widget {
        display: none;
    }
}

.user-profile-widget {
    position: relative;
    user-select: none;
}

.profile-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 14px;
    background: #f8fafb;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.profile-trigger:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.user-avatar {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.user-name {
    font-size: 14px;
    font-weight: 700;
    color: #002347;
}

.user-role {
    font-size: 11px;
    color: #71b345; 
    font-weight: 700;
    text-transform: uppercase;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 220px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    padding: 8px 0;
    display: none;
    flex-direction: column;
    z-index: 3000;
}

.dropdown-menu.show {
    display: flex;
    flex-direction: column;
}

.dropdown-menu a {
    padding: 12px 20px;
    font-size: 14px;
    color: #002347 !important;
    gap: 10px;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: #f8fafc;
    color: #1a79b0 !important;
}

.dropdown-menu hr {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 5px 0;
}

.dropdown-menu .logout-item {
    color: #e63946 !important;
    font-weight: 700;
    transition: all 0.2s ease;
}

.dropdown-menu .logout-item:hover {
    background: #fff5f5 !important;
    color: #c53030 !important;
}

.dropdown-menu .logout-item .fa-solid,
.dropdown-menu .logout-item .fa-regular {
    color: #e63946;
}

.logout-link-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    margin: 10px 0;
    background-color: #fff5f5;
    color: #e63946 !important;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.2s ease;
    border: 1px solid rgba(230, 57, 70, 0.1);
}

.logout-link-mobile:hover {
    background-color: #fee2e2;
    transform: translateX(5px);
}

.logout-link-mobile .fa-solid,
.logout-link-mobile .fa-regular {
    color: #e63946;
}

.mobile-user-info {
    display: none;
    align-items: center;
    gap: 15px;
    padding: 10px;
    margin-bottom: 20px;
}

/*------------------------- END OF THE NAVIGATION OR HEADER --------------------------*/


/*---------------------------- START OF THE MAIN CONTETN -----------------------------*/

/* <START OF MAIN-HERO SECTION> */
.main-hero {
    width: 100vw;
    min-height: 47vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url('../../image/main-hero.avif');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    width: 90%;
    max-width: 1200px;
    color: white;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: #4ade80;
    display: block;
    margin-bottom: 15px;
}

.main-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight-green {
    color: #4ade80;
}

.main-hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 35px;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-btn {
    padding: 16px 40px;
    background-color: #4ade80;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(65, 136, 91, 0.3);
}

.hero-btn:hover {
    background-color: #22c55e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 222, 128, 0.4);
}
/* <END OF MAIN-HERO SECTION> */

/* <START OF BENEFITS-GRID SECTION> */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: -50px auto 60px; 
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 35, 71, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid #eef2f5;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 28px;
    color: #4ade80;
    background: #f0fdf4;
    padding: 15px;
    border-radius: 15px;
}

.benefit-item h4 {
    color: #002347;
    font-size: 18px;
    margin-bottom: 8px;
}

.benefit-item p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}
/* <END OF BENEFITS-GRID SECTION> */

/* <START OF CATEGORY-NAV SECTION> */
.category-nav {
    padding: 60px 5%;
    text-align: center;
    background: #f9fbfd;
}

.category-nav h2 {
    color: #002347;
    font-size: 28px;
    margin-bottom: 10px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.category-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-decoration: none;
    color: #002347;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(82, 183, 136, 0.15);
    border-color: #98D8AA;
}

.category-card .material-symbols-outlined {
    font-size: 40px;
    color: #52B788;
    background: #f0fdf4;
    padding: 15px;
    border-radius: 50%;
}

.category-card i {
    font-size: 32px;
    color: #52B788;
    margin-bottom: 12px;
}

#headerRow {
    scroll-margin-top: 100px;
}

html {
    scroll-behavior: smooth;
}
/* <END OF CATEGORY-NAV SECTION> */

/* <START OF ABOUT-US SECTION> */
.about-us-section {
    padding: 80px 5%;
    background-color: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    color: #002347;
    margin: 15px 0;
    line-height: 1.2;
}

.highlight-blue {
    color: #1a79b0;
}

.about-text p {
    color: #4a5568; 
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.contact-info-mini {
    margin-top: 25px;
    background: #f8fafc;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #71b345;
    box-shadow: 0 4px 12px rgba(0, 35, 71, 0.05); 
}

.contact-info-mini p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    font-weight: 700;
    color: #1a79b0;
    font-size: 14px;
}

.contact-info-mini p i {
    color: #71b345;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(26, 121, 176, 0.15); 
    border: 1px solid #e2e8f0; 
}

@media screen and (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .about-image {
        order: -1;
        justify-content: center;
    }

    .contact-info-mini p {
        justify-content: center;
    }
}
/* <END OF ABOUT-US SECTION> */

/* <START OF TRUST-FEATURES SECTION> */
.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid #98D8AA;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    color: #52B788;
    margin-bottom: 20px;
    display: block;
}

.feature-card h4 {
    color: #002347;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
}
/* <END OF TRUST-FEATURES SECTION> */

/* <START OF HOW-IT-WORKS SECTION - OPTIMIZED SIZE> */
.how-it-works {
    padding: 60px 5%; 
    background-color: #ffffff;
    text-align: center;
}

.how-it-works h2 {
    color: #002347;
    font-size: 32px; 
    font-weight: 800;
    margin-bottom: 50px;
}

.step-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px 30px; 
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}


@media (min-width: 1024px) {
    .step-container::before {
        content: '';
        position: absolute;
        top: 42px; 
        left: 10%;
        right: 10%;
        height: 2px;
        background: repeating-linear-gradient(to right, #e2e8f0 0, #e2e8f0 10px, transparent 10px, transparent 20px);
        z-index: 1;
    }
}

.step {
    position: relative;
    z-index: 2;
    padding: 15px;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step i {
    font-size: 2.2rem; 
    color: #52B788;
    margin-bottom: 15px;
    display: block;
}

.step-num {
    width: 48px;
    height: 48px;
    background: #002347;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 800;
    margin: 0 auto 20px;
    border: 5px solid #ffffff;
    box-shadow: 0 0 0 2px #52B788;
}

.step h4 {
    color: #002347;
    font-size: 20px; 
    font-weight: 700;
    margin-bottom: 12px;
}

.step p {
    color: #64748b;
    font-size: 14.5px; 
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .step-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .how-it-works h2 {
        font-size: 26px;
        margin-bottom: 35px;
    }
    .step-container::before {
        display: none;
    }
}
/* <END OF HOW-IT-WORKS SECTION> */

/* <START OF RENTAL-HIGHLIGHTS SECTION> */
.rental-highlights {
    padding: 80px 20px;
    background-color: #f9fbfd;
    text-align: center;
}

.highlights-header {
    margin-bottom: 50px;
}

.highlight-subtitle {
    color: #52B788;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.highlight-title {
    color: #001d3d;
    font-size: 2.5rem;
    margin-top: 10px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-card {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #eef2f5;
    overflow: hidden;
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: #52B788;
    box-shadow: 0 15px 35px rgba(82, 183, 136, 0.15);
}

.card-number {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: #f4f7f6;
    z-index: 1;
    line-height: 1;
}

.highlight-icon {
    font-size: 35px;
    color: #52B788;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.highlight-card h3 {
    color: #001d3d;
    font-size: 1.45rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.highlight-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}
/* <END OF RENTAL-HIGHLIGHTS SECTION> */

/* <START OF PRODUCT-CATALOG SECTION> */
.featured-catalog-section {
    padding: 60px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-left: 5px solid #38BDF8;
    padding-left: 20px;
}

.section-title {
    margin: 0;
    font-size: 2rem;
    color: #1a202c;
    letter-spacing: -0.5px;
    text-transform: none; 
}

.section-subtitle {
    margin: 8px 0 0;
    color: #718096;
    font-size: 1.1rem;
    font-weight: 400; 
    text-transform: none;
    padding-left: 0;
}

.view-all-link {
    color: #38BDF8;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #38BDF8;
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    background: #38BDF8;
    color: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    max-height: 600px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 35, 71, 0.15);
}

.stock-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #e0f2fe; 
    color: #0369a1; 
    font-size: 10px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 5;
}

.product-image-box {
    width: 100%;
    height: 220px;
    background-color: #ffffff; 
    border-radius: 18px 18px 0 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border: 1px solid #f1f5f9;
    border-bottom: none;
}

.product-img-element {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    padding: 15px; 
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}



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


.product-image-box:not(:has(img)) {
    background: #f1f5f9;
}

.product-image-box:not(:has(img))::after {
    content: 'PREVIEW NOT AVAILABLE';
    font-size: 10px;
    color: #94a3b8;
    font-weight: 700;
    letter-spacing: 1px;
}

.product-name {
    font-size: 19px;
    color: #1a202c;
    font-weight: 700;
    
}

.trust-badge {
    background-color: #f0fdf4;
    color: #16a34a;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #bbf7d0;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

.trust-badge i {
    color: #16a34a !important;
}

.product-specs {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    min-height: 80px;
    flex-direction: column;
    gap: 8px;
}

.product-description-text {
    font-size: 0.88rem;
    color: #475569; 
    line-height: 1.5;
    font-style: italic; 
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -moz-box;
    display: box;
    line-clamp: 2;
    box-orient: vertical;
    max-height: 3em; 
}

.product-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.product-specs li i {
    color: #38BDF8;
    width: 18px;
    text-align: center;
}

.dual-price-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fcfcfc;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
}

.price-item {
    flex: 1;
}

.price-divider {
    width: 1px;
    height: 30px;
    background: #eee;
    margin: 0 10px;
}

.price-tag {
    font-size: 10px;
    font-weight: 800;
    color: #94a3b8;
    display: block;
    margin-bottom: 4px;
}

.price-value {
    font-size: 18px;
    font-weight: 800;
    color: #1a202c;
    margin: 0;
}

.price-value small {
    font-size: 11px;
    color: #64748b;
    font-weight: 400;
}

.price-item:last-child .price-value {
    color: #38BDF8;
}

.dual-action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
}

.btn-rent,
.btn-buy {
    padding: 12px 5px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-rent {
    background: transparent;
    border: 2px solid #1a202c;
    color: #1a202c;
}

.btn-rent:hover {
    background: #f1f5f9;
}

.btn-buy {
    background: #1a202c;
    border: 2px solid #1a202c;
    color: white;
}

.btn-buy:hover {
    background: #38BDF8;
    border-color: #38BDF8;
}


.guest-cta {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #f8fafc;
    border: 2px dashed #38BDF8 !important; 
    color: #38BDF8 !important;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.guest-cta:hover {
    background: #e0f2fe;
    border-style: solid !important;
    transform: scale(1.02);
}

.btn-buy:has(+ .guest-cta),
.btn-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-rent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-rent i, .btn-buy i {
    font-size: 0.9rem;
}

.dual-action-buttons button, 
.dual-action-buttons a {
    position: relative;
    overflow: hidden;
}

.dual-action-buttons button:active {
    transform: scale(0.95);
}


@media (max-width: 400px) {
    .featured-catalog-section {
        padding: 30px 10px;
    }

    .header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        border-left: 3px solid #38BDF8;
        padding-left: 10px;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .view-all-link {
        font-size: 0.9rem;
        padding: 6px 14px;
    }

    .product-grid {
        grid-template-columns: 1fr; 
        gap: 20px;
    }

    .product-card {
        padding: 15px;
    }

    .product-image-box {
        height: 140px;
    }

    .product-name {
        font-size: 16px;
        min-height: auto;
        margin-bottom: 10px;
    }

    .trust-badge {
        font-size: 11px;
        padding: 3px 6px;
    }

    .product-specs {
        font-size: 0.8rem;
        padding: 0 5px;
    }

  .dual-price-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;          
        padding: 10px;
        background: #f9fafb; 
        border-radius: 12px;
        border: 1px solid #e2e8f0;
    }

    .price-item {
        width: 100%;
    }

    .price-tag {
        font-size: 11px;
        font-weight: 700;
        color: #94a3b8;
        margin-bottom: 2px;
    }

    .price-value {
        font-size: 17px;
        font-weight: 800;
        color: #1a202c;
        margin: 0;
    }

    .price-item:last-child .price-value {
        color: #38BDF8;
    }

    .price-item:first-child {
        padding: 6px 10px;
        background: #f0f9ff;
        border-radius: 8px;
        margin-bottom: 5px;
    }

    .price-item:last-child {
        padding: 6px 10px;
        background: #eff6ff;
        border-radius: 8px;
    }

    .dual-action-buttons {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 10px;
    }

    .dual-action-buttons {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 15px;
    }

    .btn-rent, .btn-buy {
        font-size: 12px;
        padding: 10px 5px;
    }

    .guest-cta {
        font-size: 12px;
        padding: 10px 5px;
    }
}

.pricing-container {
    display: flex;
    align-items: center;
    justify-content: center; 
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 20px;
    height: 60px; 
    min-height: 60px;
    box-sizing: border-box;
}

.price-block {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
}

.price-amount {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.price-amount .period {
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
}

.price-separator {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
    margin: 0 10px;
}

.has-dual .sale .price-amount {
    color: #38BDF8;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
}

.btn-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-buy-solid,
.btn-rent-now {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
}

.btn-buy-solid:hover,
.btn-rent-now:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    transform: translateY(-1px);
}

.btn-buy-outline,
.btn-rent-outline {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    color: #1e293b;
}

.btn-buy-outline:hover,
.btn-rent-outline:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: #f8fafc;
}

.btn-rent-outline {
    border-color: #c7d2fe;
}

.btn-rent-now {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

.btn-guest {
    background: #f1f5f9;
    color: #64748b;
    border: 1px dashed #cbd5e1;
}

.btn-action i {
    font-size: 0.8rem;
}

.btn-action:active {
    transform: scale(0.96);
}

@media (max-width: 768px) {
    .action-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .btn-action {
        font-size: 0.8rem;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .action-grid {
        grid-template-columns: 1fr; 
    }

    .btn-action {
        font-size: 0.8rem;
        padding: 11px;
        border-radius: 8px;
    }
}


.stock-badge.out-of-stock {
    background: #fee2e2;
    color: #b91c1c;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    color: #94a3b8;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.product-info-header {
    margin-bottom: 12px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
    line-height: 1.2;
}

.equipment-type-tag {
    font-size: 0.65rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}


.card-overlays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 15px; 
    z-index: 10;
    pointer-events: none; 
}

.card-overlays > div {
    pointer-events: auto; 
}


.stock-tag,
.type-tag {
    font-family: 'Inter', sans-serif; 
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 4px 10px;
    border-radius: 4px; 
    display: flex;
    align-items: center;
    gap: 5px;
}

.stock-tag i,
.type-tag i {
    font-size: 0.8rem;
}

.status-in {
    background-color: #e0f2fe; 
    color: #0369a1; 
}

.status-out {
    background-color: #fef2f2;
    color: #991b1b;
}

.trans-both {
    background-color: #ecfdf5; 
    color: #15803d;
}


.trans-rent {
    background-color: #eff6ff;
    color: #1d4ed8;
}


.trans-sale {
    background-color: #fffbeb; 
    color: #a16207; 
}


.product-text-block {
    text-align: center;
    padding: 15px 10px 5px 10px;
    border-bottom: 1px solid #f1f5f9; 
    margin-bottom: 10px;
}

.display-name {
    font-size: 1.15rem;
    font-weight: 800; 
    color: #111827;
    margin-bottom: 3px;
    line-height: 1.2;
}

.equipment-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}

/* <END OF PRODUCT-CATALOG SECTION> */

/* <START OF TESTIMONIALS SECTION> */
.testimonials {
    padding: 80px 5%;
    background: #ffffff;
    text-align: center;
}

.testimonials h2 {
    color: #002347;
    font-size: 28px;
    margin-bottom: 10px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
    text-align: left;
}

.testimonial-card {
    padding: 35px;
    background: #f8fafb;
    border-radius: 15px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card p {
    color: #555;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: #002347;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    font-size: 16px;
}

.client-info div strong {
    color: #002347;
    display: block;
}

.client-info div {
    font-size: 14px;
    color: #666;
}
/* <END OF TESTIMONIALS SECTION> */

/* <START OF MISC & UTILITIES> */
.refill-badge {
    display: inline-block;
    background: #f0f9ff;
    color: #00a8cc;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    border: 1px solid #e0f2fe;
}

.messenger-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #0084FF; 
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0, 132, 255, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.messenger-fab:hover {
    transform: scale(1.1) rotate(5deg);
}

@media screen and (max-width: 768px) {
    .benefits-grid {
        margin-top: 20px;
    }
    
    .step-container::before {
        display: none;
    }
}
/* <END OF MISC & UTILITIES> */

/*------------------------- END OF THE MAIN CONTETN --------------------------*/


footer {
    background: #002347;
    color: white;
    padding: 80px 5% 30px;
    margin-top: 100px;
    border-radius: 40px 40px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-logo span {
    color: #00a8cc;
}

.footer-col h4 {
    color: #98D8AA;
    margin-bottom: 25px;
}

.footer-col li {
    list-style: none;
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-icon-small {
    font-size: 18px !important;
    vertical-align: middle;
    margin-right: 10px;
    color: #52B788;
}

.copyright {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 12px;
    opacity: 0.5;
}



@media screen and (max-width: 768px) {
    .hamburger-icon {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .gallery-container {
        margin-top: 100px;
        width: 95%;
    }

    .controls-row {
        flex-direction: column;
        padding: 10px;
    }


    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card {
        padding: 15px;
        border-radius: 12px;
    }

    .product-image-box {
        height: 120px;
        margin-bottom: 10px;
    }

    .product-name {
        font-size: 14px;
        min-height: 40px;
        margin-bottom: 10px;
    }

    .dual-price-wrapper {
        flex-direction: column;
        gap: 8px;
        padding: 10px;
    }

    .price-divider {
        width: 100%;
        height: 1px;
        margin: 5px 0;
    }

    .price-value {
        font-size: 15px;
    }

    .dual-action-buttons {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .btn-rent,
    .btn-buy {
        padding: 8px 5px;
        font-size: 11px;
    }

    .stock-badge {
        top: 10px;
        left: 10px;
        font-size: 8px;
        padding: 3px 8px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .category-card {
        padding: 20px 10px;
        font-size: 13px;
    }

    .category-card .material-symbols-outlined {
        font-size: 30px;
        padding: 10px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials {
        padding: 40px 5%;
    }
}


@media screen and (max-width: 350px) {
    body {
        font-size: 14px;
    }

    nav {
        padding: 10px 3%;
    }

    .nav-logo {
        font-size: 18px;
    }

    .main-hero {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .main-hero h1 {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .main-hero p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .hero-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .about-us-section {
        padding: 40px 10px;
    }

    .about-text h2 {
        font-size: 22px;
    }

    .feature-card {
        padding: 20px 10px;
    }

    .highlight-title {
        font-size: 1.6rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .highlight-card {
        padding: 25px 15px;
    }

    .card-number {
        font-size: 2.5rem;
        top: 5px;
        right: 10px;
    }

    .gallery-container {
        width: 96%;
        margin: 20px auto;
    }

    .section-title {
        font-size: 20px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .product-card {
        padding: 10px 5px;
    }

    .product-image-box {
        height: 90px;
    }

    .product-name {
        font-size: 11px;
        min-height: 35px;
    }

    .price-value {
        font-size: 12px;
    }

    .price-tag {
        font-size: 7px;
    }

    .dual-action-buttons {
        gap: 5px;
    }

    .btn-rent,
    .btn-buy {
        font-size: 10px;
        padding: 8px 2px;
    }

    footer {
        padding: 40px 5% 20px;
        border-radius: 20px 20px 0 0;
    }

    .footer-col h4 {
        margin-bottom: 15px;
        font-size: 16px;
    }

    .footer-logo {
        font-size: 20px;
    }
}