/* ================= ROOT VARIABLES ================= */
:root {
    --primary-blue: #1e7dd4;
    --primary-blue-light: #f0f6fc;
    --primary-white: #ffffff;
    --secondary-white: #f8f9fa;
    --accent-blue: #0a7ed4;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --text-muted: #718096;
    --border-light: #e2e8f0;
}

/* ================= GLOBAL STYLES ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll; /* Always show scrollbar to prevent layout shift */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--text-dark);
    background-color: var(--primary-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ================= PAGE WRAPPER ================= */
.page-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* ================= HERO SECTION ================= */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-white) 100%);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 125, 212, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.hero-content {
    max-width: 55%;
    position: relative;
    z-index: 2;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    margin-bottom: 20px;
    animation: slideInLeft 0.8s ease-out 0.1s backwards;
}

.hero-title {
    font-size: 3em;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    animation: slideInLeft 0.8s ease-out 0.2s backwards;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1em;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
    font-weight: 400;
    animation: slideInLeft 0.8s ease-out 0.3s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: slideInLeft 0.8s ease-out 0.4s backwards;
}

.cta-button {
    padding: 14px 30px;
    font-size: 0.9em;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.cta-button.primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 6px 20px rgba(30, 125, 212, 0.25);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 125, 212, 0.35);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-blue);
}

.cta-button.secondary:hover {
    background: var(--primary-blue-light);
    transform: translateY(-3px);
}

.hero-image {
    max-width: 45%;
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-glow {
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: radial-gradient(circle, rgba(30, 125, 212, 0.1) 0%, transparent 70%);
    border-radius: 20px;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(30, 125, 212, 0.15);
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
}

/* ================= ABOUT SECTION ================= */
.section-about {
    width: 100%;
    padding: 60px 5%;
    background: var(--primary-white);
    text-align: center;
    box-sizing: border-box;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

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

.section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: 1.05em;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 400;
}

.view-more-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(30, 125, 212, 0.25);
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 125, 212, 0.35);
}

/* ================= SPECIALIZES SECTION ================= */
.section-specializes {
    width: 100%;
    padding: 70px 5%;
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-white) 100%);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.section-specializes .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.specializes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
    box-sizing: border-box;
}

.specialize-card {
    background: var(--primary-white);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.specialize-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 125, 212, 0.08), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.specialize-card:hover::before {
    left: 100%;
}

.specialize-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 0 12px 30px rgba(30, 125, 212, 0.12);
}

.card-icon {
    font-size: 2.5em;
    margin-bottom: 12px;
    animation: bounce 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.specialize-card:hover .card-icon {
    animation: spin 0.6s ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.specialize-card h3 {
    font-size: 1.05em;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 1;
}

.specializes-cta {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.specializes-cta p {
    font-size: 1em;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 500;
}

.view-categories {
    display: inline-block;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95em;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 2px;
}

.view-categories:hover {
    color: var(--accent-blue);
    border-bottom-color: var(--accent-blue);
    transform: translateX(5px);
}

/* ================= WHY CHOOSE US SECTION ================= */
.section-why-choose {
    width: 100%;
    padding: 70px 5%;
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, rgba(30, 125, 212, 0.05) 100%);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.section-why-choose::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 125, 212, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

.section-why-choose::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(10, 126, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
    z-index: 0;
}

.section-why-choose .section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.why-card {
    background: linear-gradient(135deg, var(--primary-white) 0%, rgba(240, 246, 252, 0.8) 100%);
    border: 2px solid var(--primary-blue);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 125, 212, 0.12);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 125, 212, 0.15), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.why-card:hover::before {
    left: 100%;
}

.why-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--accent-blue);
    box-shadow: 0 20px 50px rgba(30, 125, 212, 0.25);
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--primary-blue-light) 100%);
}

.why-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, rgba(30, 125, 212, 0.1) 100%);
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2em;
    color: var(--primary-blue);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(30, 125, 212, 0.15);
}

.why-card:hover .why-icon {
    transform: scale(1.2) rotate(360deg);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white;
    box-shadow: 0 12px 30px rgba(30, 125, 212, 0.3);
}

.why-card h3 {
    font-size: 1.2em;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.why-card p {
    color: var(--text-light);
    font-size: 0.95em;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ================= PRODUCT SECTION ================= */
.product-section {
    width: calc(100% + (100vw - 100%));
    margin: auto;
    padding: 70px 5%;
    background: linear-gradient(135deg, var(--secondary-white) 0%, var(--primary-blue-light) 100%);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.product-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 125, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.header h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
}

.header div:first-child {
    display: flex;
    flex-direction: column;
}

.section-subtitle {
    font-size: 1em;
    color: var(--text-light);
    margin-bottom: 5px;
}

.arrows {
    display: flex;
    gap: 15px;
}

.arrow-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-blue);
    background: var(--primary-white);
    cursor: pointer;
    font-size: 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: var(--primary-blue);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(30, 125, 212, 0.1);
}

.arrow-btn:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white;
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(30, 125, 212, 0.25);
}

.product-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 5% 20px 5%;
    position: relative;
    z-index: 2;
    max-width: 100%;
    box-sizing: border-box;
}

.product-slider::-webkit-scrollbar {
    height: 10px;
}

.product-slider::-webkit-scrollbar-track {
    background: rgba(30, 125, 212, 0.1);
    border-radius: 10px;
}

.product-slider::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    border-radius: 10px;
}

.product-slider::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}

.product-card {
    min-width: 200px;
    background: var(--primary-white);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(30, 125, 212, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 125, 212, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--primary-blue);
    box-shadow: 0 25px 50px rgba(30, 125, 212, 0.25);
}

.product-card:hover::after {
    left: 100%;
}

.product-image-wrapper {
    position: relative;
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 8px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-white) 0%, var(--primary-blue-light) 100%);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(30, 125, 212, 0.25);
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.product-card:hover img {
    transform: scale(1.15) rotate(5deg);
}

.product-card h3 {
    margin: 10px 0 5px;
    font-size: 0.95em;
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.product-card p {
    font-size: 0.8em;
    color: var(--text-muted);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    line-height: 1.4;
}

.price {
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 1.3em;
    position: relative;
    z-index: 2;
}

.product-card:hover .price {
    animation: pricePulse 0.6s ease;
}

@keyframes pricePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ================= BRANDS SECTION ================= */
.section-full-dark {
    width: 100%;
    padding: 70px 5%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a88de 50%, var(--primary-blue) 100%);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.section-full-dark::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.section-full-dark::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.featured-brands h2 {
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.featured-brands h2 .highlight {
    background: linear-gradient(135deg, #ffffff 0%, #e6f0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brands-container {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    z-index: 1;
}

.brands-slider {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: brandScroll 25s linear infinite;
    width: fit-content;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 200px;
    padding: 30px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.brand-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border-color: var(--primary-blue);
}

.brand-item img {
    width: 120px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.brand-name {
    font-size: 1.15em;
    font-weight: 700;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.brand-item:hover .brand-name {
    color: var(--accent-blue);
}

@keyframes brandScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ================= CONTACT SECTION ================= */
.contact-section {
    width: calc(100% + (100vw - 100%));
    margin: auto;
    padding: 70px 5%;
    background: var(--primary-blue-light);
    text-align: center;
    box-sizing: border-box;
}

.contact-section .section-title {
    text-align: center;
}

.contact-section .section-subtitle {
    text-align: center;
    margin-bottom: 50px;
}

.inquiry-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 45px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(30, 125, 212, 0.1);
    border: 2px solid var(--border-light);
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    padding: 13px;
    margin-bottom: 18px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 0.95em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
    font-weight: 400;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 125, 212, 0.1);
}

.inquiry-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    padding: 14px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(30, 125, 212, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 125, 212, 0.35);
}

.submit-button:active {
    transform: translateY(-1px);
}

#indexFormMsg {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95em;
}

#indexFormMsg.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

#indexFormMsg.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

/* ================= ANIMATIONS ================= */
.animate-in {
    animation: fadeInUp 0.8s ease-out !important;
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        padding: 60px 5%;
    }

    .hero-content,
    .hero-image {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 5%;
    }

    .hero-title {
        font-size: 1.8em;
    }

    .hero-subtitle {
        font-size: 1em;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 1.8em;
    }

    .specializes-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    .why-card {
        padding: 25px;
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .product-card {
        min-width: 160px;
    }

    .inquiry-form-container {
        padding: 30px 20px;
    }

    .product-slider {
        padding: 0 4% 20px 4%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.4em;
    }

    .section-title {
        font-size: 1.4em;
    }

    .hero-section::before {
        display: none;
    }

    .specializes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .inquiry-form-container {
        padding: 20px;
    }

    .product-slider {
        padding: 0 3% 20px 3%;
    }
}



/* ===== SPECIALIZE ICON IMAGE FIX ===== */
.card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;   /* centers horizontally + keeps spacing */
    display: flex;
    align-items: center;   /* vertical center */
    justify-content: center; /* horizontal center */
    animation: bounce 2s ease-in-out infinite;
}


.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


