/* ================= COMPONENT STYLES ================= */
/* Reusable UI Components */

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--iic-red);
    color: var(--white);
    border: 2px solid var(--iic-red);
}

.btn-primary:hover {
    background: #c21511;
    border-color: #c21511);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(228, 27, 23, 0.3);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--iic-red);
    border: 2px solid var(--iic-red);
}

.btn-outline:hover {
    background: var(--iic-red);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--charcoal);
}

.btn-lg {
    padding: 14px 40px;
    font-size: 1.1rem;
}

/* Icon Box */
.icon-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-sm);
    border-bottom: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.icon-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom: 3px solid var(--iic-red);
}

.icon-box h5 {
    margin-top: 15px;
    position: relative;
    z-index: 2;
}

.icon-box p {
    position: relative;
    z-index: 2;
    color: #555;
}

.icon-box img {
    max-height: 80px;
    object-fit: contain;
}

/* Cards */
.card-premium {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border-top: 4px solid var(--iic-red);
}

.card-premium:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Quality Card */
.quality-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--iic-red);
}

.quality-card h5 {
    font-weight: var(--font-weight-bold);
    margin-bottom: 20px;
}

.quality-list {
    list-style: none;
    padding-left: 0;
}

.quality-list li {
    padding: 6px 0;
    font-size: 14px;
    position: relative;
    padding-left: 18px;
}

.quality-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--iic-red);
    font-weight: var(--font-weight-bold);
}

/* Product Pills */
.product-pill {
    display: inline-block;
    padding: 8px 16px;
    margin: 6px;
    border: 1px solid #2b5cff;
    border-radius: 30px;
    font-size: 13px;
    font-weight: var(--font-weight-semibold);
    color: #2b5cff;
    background: var(--white);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.product-pill:hover {
    background: #2b5cff;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(43, 92, 255, 0.25);
}

/* Badge Pills */
.badge-pill {
    display: inline-block;
    padding: 8px 16px;
    margin: 6px;
    border: 2px solid var(--iic-red);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: var(--font-weight-semibold);
    color: var(--iic-red);
    background: var(--white);
    transition: all var(--transition-base);
}

.badge-pill:hover {
    background: var(--iic-red);
    color: var(--white);
    transform: translateY(-2px);
}

/* Section Divider */
.section-divider {
    width: 60px;
    height: 4px;
    background: var(--iic-red);
    margin-top: 20px;
}

/* Section Image */
.section-img {
    width: 100%;
    border-radius: var(--radius-sm);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

/* Image Hover Zoom */
.img-hover-zoom {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.img-hover-zoom img {
    transition: transform var(--transition-slow);
}

.img-hover-zoom:hover img {
    transform: scale(1.1);
}

/* OEM Logo */
.oem-logo {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-base);
}

.oem-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.grayscale {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.grayscale:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Premium Gradient Text */
.premium-gradient-text {
    background: linear-gradient(135deg, var(--iic-red) 0%, #0B3C5D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Premium Text Box */
.premium-text-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--iic-red);
}

.premium-text-box::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 10rem;
    color: rgba(198, 40, 40, 0.03);
    font-family: serif;
    line-height: 1;
}

/* Form Controls */
.form-control {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-base);
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.form-control:focus {
    outline: none;
    border-color: var(--iic-red);
    box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background: #25D366;
    border-radius: var(--radius-full);
    padding: 12px;
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-base);
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--iic-red);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #c21511;
    transform: translateY(-5px);
}