@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* =============================================
   RESET & BASE
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    background-color: #fcfcfc;
}

a {
    text-decoration: none;
}

li {
    padding: 5px;
}

/* =============================================
   MODAL
   ============================================= */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    position: relative;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-content h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #2196F3;
    display: inline-block;
    padding-bottom: 5px;
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
    color: #666;
}

#popupForm input,
#popupForm textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.send-btn {
    background: #00a8ff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
    width: 100%;
    font-size: 16px;
}

.send-btn:hover {
    background: #1976D2;
}

/* =============================================
   HEADER
   ============================================= */
.hero-section {
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.header-main {
    position: static;
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.header-left {
    flex: 0 0 150px;
}

.header-left img {
    width: 100%;
    height: auto;
    display: block;
}

.header-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.header-right-top {
    display: flex;
    gap: 25px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 8px;
}

.header-right-top span {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.header-right-top i {
    color: #e62117;
    margin-right: 6px;
}

.header-right-top ul {
    list-style: none;
}

.header-right-top ul li a {
    color: #666;
    text-decoration: none;
    transition: 0.3s;
}

.header-right-top ul li a:hover {
    color: #000;
}

.header-right-bottom {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 35px;
}

.main-menu {
    transition: all 0.3s ease;
}

.main-menu ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

.main-menu ul li {
    position: relative;
    list-style: none;
}

.main-menu ul li a {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
    position: relative;
    z-index: 1;
}

.main-menu ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: #00a8ff;
    z-index: -1;
    transition: all 0.4s ease-in-out;
    transform: translateX(-50%);
    border-radius: 4px;
}

.main-menu ul li a:hover::before {
    width: 100%;
}

.main-menu ul li a:hover {
    color: #ff0000;
}

.share-links {
    display: flex;
    gap: 12px;
    border-left: 1px solid #ddd;
    padding-left: 20px;
}

.share-links i {
    font-size: 17px;
    color: #888;
    transition: 0.3s;
    cursor: pointer;
}

.share-links i:hover {
    color: #e62117;
    transform: scale(1.2);
}

.menu-icon {
    color: white;
    font-size: 30px;
    display: none;
}

.menu-btn {
    display: none;
    padding: 8px 20px;
    background-color: #f28b82;
    color: #c0c0c0;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-align: center;
    margin: 0 auto;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.menu-btn:hover {
    background-color: #90caf9;
    color: #c0c0c0;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-main-section {
    width: 100%;
    min-height: 400px;
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.main-slider {
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.hero-slide {
    display: none;
    text-align: center;
    animation: fadeIn 0.8s ease-in-out;
}

.hero-slide.active {
    display: block;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-grid {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
}

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-10px);
}

.product-item img {
    max-height: 200px;
    width: auto;
    margin-bottom: 15px;
    filter: drop-shadow(5px 10px 15px rgba(0, 0, 0, 0.3));
}

.product-item p {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.slider-dots {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #ffffff;
    width: 30px;
    border-radius: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* =============================================
   ABOUT COMPANY
   ============================================= */
.about-company {
    padding: 60px 0;
    background-color: #ffffff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.description {
    text-align: center;
}

.main-title {
    font-size: 32px;
    color: #222;
    margin-bottom: 30px;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #00f2fe;
}

.desc-content {
    margin-top: 20px;
}

.desc-content p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: justify;
}

.desc-content a {
    color: #00a8ff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.desc-content a:hover {
    color: #e62117;
    text-decoration: underline;
}

.desc-content strong {
    color: #222;
    font-weight: 700;
}

/* =============================================
   HOME PRODUCTS
   ============================================= */
.our-products {
    padding: 60px 0;
    text-align: center;
    background-color: #fff;
}

.product-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    border: 1px solid #eee;
    padding: 20px;
    transition: 0.3s;
    background: #fff;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-img {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #f0f0f0;
    margin-bottom: 15px;
}

.product-img img {
    max-height: 100%;
    max-width: 100%;
}

.product-card h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.read-more {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    color: #444;
    background: #f9f9f9;
}

.read-more i {
    font-size: 10px;
    margin-right: 5px;
}

.hidden {
    display: none;
}

.view-more-container {
    margin-top: 40px;
}

.btn-more {
    padding: 12px 30px;
    background-color: #00a8ff;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-more:hover {
    background-color: #0086cc;
}

.btn-more a {
    color: white;
    text-decoration: none;
}

/* =============================================
   FOOTER
   ============================================= */
.footer-section {
    background-color: #3d464d;
    color: #ffffff;
    padding-top: 50px;
    position: relative;
    font-family: Arial, sans-serif;
}

.get-in-touch {
    background-color: #00a8ff;
    color: white;
    padding: 10px 25px;
    display: inline-block;
    position: absolute;
    top: -20px;
    left: 5%;
    font-weight: bold;
    font-style: italic;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 5%;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 500;
}

.footer-col ul li {
    list-style: none;
    border-bottom: 1px solid #576169;
    padding: 8px 0;
}

.footer-col ul li a {
    color: #cfd3d6;
    text-decoration: none;
    font-size: 14px;
}

.footer-col ul li a::before {
    content: '> ';
    margin-right: 5px;
}

.contact-info p {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.6;
    display: flex;
    gap: 10px;
    color: #cfd3d6;
}

.contact-info i {
    color: #ffffff;
    margin-top: 4px;
}

.social-icons {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.social-icons a {
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    color: #3d464d;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.social-icons a:hover {
    background-color: #00a8ff;
    color: white;
}

.footer-bottom {
    background-color: #343c42;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    font-size: 12px;
    border-top: 1px solid #4a545c;
}

.footer-bottom p {
    margin-bottom: 5px;
    color: #cfd3d6;
}

.page-header {
    background-color: #3d464d;
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-bottom: 40px;
}

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar-box {
    border: 1px solid #eee;
    margin-bottom: 30px;
}

.sidebar-title {
    background: #f4f4f4;
    padding: 12px 15px;
    font-size: 16px;
    border-bottom: 2px solid #00a8ff;
}

.category-list li {
    list-style: none;
    border-bottom: 1px solid #eee;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    color: #444;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.submenu {
    display: none;
    list-style: none;
    padding-left: 20px;
    background: #f9f9f9;
}

.submenu li {
    background: transparent !important;
}

.submenu li a {
    position: relative;
    text-decoration: none;
    color: #666;
    display: inline-block;
    font-size: 13px;
    padding: 8px 10px;
    margin: 0 15px;
    border-bottom: 1px solid #eee;
    transition: 0.3s;
}

.submenu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: #00a8ff;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}

.submenu li a:hover::after {
    width: 100%;
}

.submenu li a:hover {
    color: #00a8ff;
}

.has-dropdown.active .submenu {
    display: block;
}

.has-dropdown.active .toggle-icon {
    transform: rotate(180deg);
}

.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.dropdown-header a {
    position: relative;
    text-decoration: none;
    color: #333;
    display: inline-block;
    padding: 5px 0;
    transition: 0.3s;
}

.dropdown-header a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: #00a8ff;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}

.dropdown-header a:hover::after {
    width: 100%;
}

.dropdown-header a:hover,
.submenu li a:hover {
    color: #00a8ff;
}

.dropdown-header:hover,
.submenu li:hover {
    background-color: transparent !important;
}

.toggle-icon {
    padding: 10px;
    transition: 0.3s;
}

.sidebar-form {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-form input,
.sidebar-form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    width: 100%;
}

.submit-btn {
    background: #00a8ff;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

/* =============================================
   PRODUCT LIST PAGE
   ============================================= */
.product-page-main {
    display: flex;
    gap: 30px;
    padding: 40px 0;
    align-items: flex-start;
}

/* FIX: flex:1 and min-width:0 prevents grid overflow */
.product-content {
    flex: 1;
    order: 1;
    min-width: 0;
}

/* FIX: order:2 = right side. flex-shrink:0 = no shrink */
.sidebar {
    width: 280px;
    min-width: 280px;
    flex-shrink: 0;
    order: 2;
    position: sticky;
    top: 20px;
}

.category-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #eee;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.view-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.view-icons i {
    cursor: pointer;
    font-size: 18px;
    color: #888;
    transition: 0.3s;
}

.view-icons i:hover {
    color: #00a8ff;
}

/* FIX: 3 columns, no min-width on p-card */
.main-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.p-card {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    transition: 0.3s;
    box-sizing: border-box;
}

.p-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.p-card h4 {
    font-size: 15px;
    margin: 15px 0;
    color: #333;
}

.p-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    margin-bottom: 10px;
}

.p-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.read-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 15px;
    border: 1px solid #ddd;
    font-size: 12px;
    color: #333;
    text-decoration: none;
}

.read-btn:hover {
    background-color: #00a8ff;
    color: white;
}

.pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination a {
    padding: 10px 18px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #444;
    transition: 0.3s;
    border-radius: 4px;
}

.pagination a:hover,
.pagination a.active {
    background: #00a8ff;
    color: white;
    border-color: #00a8ff;
}

/* =============================================
   PRODUCT DETAIL PAGE
   ============================================= */
.main-content-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.left-content {
    flex: 3;
    min-width: 0;
}

.product-header {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.image-box {
    flex: 1 1 300px;
    min-width: 280px;
    position: relative;
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
}

.info-box {
    flex: 1 1 300px;
    min-width: 280px;
}

.info-box h1 {
    display: block;
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-box p {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.info-box p a {
    color: #00a8ff;
    text-decoration: none;
    font-weight: 500;
}

.info-box p a:hover {
    text-decoration: underline;
}

.info-box * {
    max-width: 100%;
    word-wrap: break-word;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slider-inner img {
    width: 100%;
    flex-shrink: 0;
    object-fit: contain;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 10;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.zoom-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-icon:hover {
    background: #00a8ff;
    color: white;
}

.image-zoom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.modal-zoom-content {
    max-width: 80%;
    max-height: 80%;
    border: 3px solid white;
}

.close-zoom {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
}

.second {
    flex: 2;
    order: 1;
}

.one {
    display: flex;
    justify-content: space-evenly;
}

.tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 12px 30px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #555;
    position: relative;
    transition: 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    color: #00a8ff;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #00a8ff;
}

.tab-content {
    background: #fff;
    padding: 10px 0;
    min-height: 400px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 14px;
}

.spec-table th,
.spec-table td {
    border: 1px solid #e0e0e0;
    padding: 12px;
    text-align: center;
}

.spec-table thead th {
    background-color: #f8f9fa;
    color: #333;
    font-weight: bold;
}

.spec-table tbody tr:nth-child(even) {
    background-color: #fcfcfc;
}

.additional-info {
    margin-top: 30px;
    padding: 15px;
    background: #fdfdfd;
    border-left: 4px solid #00a8ff;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-links a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 2px;
    transition: 0.3s;
}

.social-links a.fb {
    background: #3b5998;
}

.social-links a.tw {
    background: #55acee;
}

.social-links a.in {
    background: #007bb5;
}

.social-links a.gp {
    background: #dd4b39;
}

.social-links a.en {
    background: #e62117;
}

.social-links a:hover {
    opacity: 0.8;
    transform: translateY(-3px);
}

.related-products {
    margin-top: 50px;
    padding-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.section-header h3 {
    font-size: 18px;
    color: #333;
}

.slider-nav i {
    cursor: pointer;
    font-size: 18px;
    color: #00a8ff;
    margin-left: 10px;
    transition: 0.3s;
}

.slider-nav i:hover {
    color: #333;
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.related-card {
    min-width: calc(25% - 15px);
    border: 1px solid #eee;
    padding: 15px;
    text-align: center;
    background: #fff;
    flex-shrink: 0;
}

.related-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.related-img img {
    max-width: 100%;
    max-height: 100%;
}

.read-more-btn {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #ccc;
    font-size: 12px;
    color: #333;
    text-decoration: none;
    margin-top: 10px;
}

.slider-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 10px;
}

.nav-btn {
    background: #00a8ff;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}

/* ABOUT PAGE */
.about-page-container {
    display: flex;
    gap: 40px;
    padding: 50px 20px;
    align-items: flex-start;
}

.about-left {
    flex: 2;
}

.about-right {
    flex: 1;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumb {
    font-size: 13px;
    color: #ccc;
}

.about-text p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.business-info h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #333;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table td {
    border: 1px solid #ddd;
    padding: 12px 15px;
    font-size: 14px;
    color: #444;
}

.info-table tr td:first-child {
    background-color: #f9f9f9;
    font-weight: 600;
    width: 40%;
}

.quote-form-box {
    background: #fff;
    padding: 0;
    margin-bottom: 40px;
}

.quote-form-box h3 {
    color: #00a8ff;
    font-size: 22px;
    margin-bottom: 20px;
}

.quote-form-box input,
.quote-form-box textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    font-family: inherit;
}

.quote-form-box textarea {
    height: 100px;
    resize: none;
}

.sidebar-products h3 {
    color: #00a8ff;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.side-prod-list {
    list-style: none;
}

.side-prod-list li {
    background: #f4f4f4;
    padding: 12px 15px;
    margin-bottom: 5px;
    font-size: 13px;
    color: #0056b3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.side-prod-list li:hover {
    background: #e0e0e0;
}

/* CONTACT PAGE */
.contact-page-container {
    display: flex;
    gap: 50px;
    padding: 60px 20px;
}

.contact-left {
    flex: 1.2;
}

.contact-right {
    flex: 1;
}

.form-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 500;
}

.form-title span {
    color: #00a8ff;
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group label span {
    color: #e62117;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn-blue {
    background-color: #00a8ff;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn-blue:hover {
    background-color: #0086cc;
}

.detail-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background-color: #00a8ff;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.detail-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.contact-map {
    margin-top: 30px;
    border: 5px solid #f4f4f4;
}

/* VIDEO */
.video-gallery {
    padding: 50px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-card {
    background: #fff;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.video-card iframe {
    width: 100%;
    height: 300px;
    border-radius: 5px;
}

.video-card h4 {
    margin-top: 15px;
    text-align: center;
    color: #333;
    font-size: 18px;
}

/* TESTIMONIALS */
.testimonial-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.testimonial-item {
    margin-bottom: 50px;
}

.quote-bubble {
    background-color: #2da1e2;
    color: white;
    padding: 20px 50px;
    border-radius: 6px;
    position: relative;
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.quote-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 30px;
    border-width: 15px 15px 0 0;
    border-style: solid;
    border-color: #2da1e2 transparent transparent transparent;
}

.quote-bubble::before {
    content: '"';
    position: absolute;
    left: 10px;
    top: 5px;
    font-size: 60px;
    font-family: serif;
    opacity: 0.9;
    line-height: 1;
}

.right-quote {
    position: absolute;
    right: 15px;
    bottom: -10px;
    font-size: 60px;
    font-family: serif;
    opacity: 0.9;
    line-height: 1;
}

.author-info {
    margin-top: 20px;
    margin-left: 10px;
    font-weight: 900;
    color: #1a1a1a;
    font-size: 16px;
    letter-spacing: 0.5px;
}

/* FIXED SOCIAL ICONS */
.social-fixed {
    position: fixed;
    right: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
}

.icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.4;
    z-index: -1;
    animation: pulse 1.5s infinite;
}

.icon:hover {
    transform: scale(1.1);
}

.whatsapp {
    background: #25D366;
}

.whatsapp::before {
    background: #25D366;
}

.messenger {
    background: #0084FF;
}

.messenger::before {
    background: #0084FF;
}

.call {
    background: #4CAF50;
}

.call::before {
    background: #4CAF50;
}

@keyframes pulse {
    0% {
        transform: scale(1.2);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.6);
        opacity: 0.2;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

/* =============================================
   MEDIA QUERIES
   ============================================= */

/* Large tablets — 1024px */
@media (max-width: 1024px) {
    .product-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .main-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sidebar {
        width: 240px;
        min-width: 240px;
    }
}

/* Tablets — 992px */
@media (max-width: 992px) {
    .product-page-main {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        min-width: unset;
        flex-shrink: unset;
        order: 1;
        position: static;
    }

    .product-content {
        order: 2;
        width: 100%;
    }

    .main-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-content-wrapper {
        flex-direction: column;
    }

    .left-content {
        width: 100%;
        flex: none;
    }

    .product-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .image-box {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
    }

    .info-box {
        width: 100%;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .spec-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .related-card {
        min-width: calc(50% - 10px);
    }

    .about-page-container,
    .contact-page-container {
        flex-direction: column;
    }

    .about-left,
    .about-right,
    .contact-left,
    .contact-right {
        width: 100%;
        flex: none;
    }

    .header-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Mobile landscape — 768px */
@media (max-width: 768px) {
    .header-right-top {
        display: none;
    }

    .header-right-bottom {
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 8px;
    }

    .menu-btn {
        display: block;
        margin: 0 auto;
    }

    .main-menu {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #ffffff;
        z-index: 999;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .main-menu.active {
        display: block;
    }

    .main-menu ul {
        flex-direction: column;
        gap: 0;
        padding: 5px 0;
    }

    .main-menu ul li {
        padding: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .main-menu ul li a {
        display: block;
        padding: 12px 20px;
        font-size: 14px;
    }

    .main-menu ul li a:hover {
        background-color: #f0f8ff;
        color: #00a8ff;
    }

    .share-links {
        display: none;
    }

    .hero-main-section {
        min-height: 260px;
        padding: 30px 15px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .product-grid {
        gap: 15px;
        padding: 0 10px;
    }

    .product-item img {
        max-height: 100px;
    }

    .product-item p {
        font-size: 12px;
    }

    .product-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .main-product-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .one {
        flex-direction: column;
        align-items: center;
    }

    .image-box {
        max-width: 300px;
        margin: 0 auto 20px;
    }

    .info-box h1 {
        font-size: 22px;
    }

    .tabs {
        flex-wrap: wrap;
        gap: 5px;
    }

    .tab-btn {
        flex: 1 1 auto;
        font-size: 14px;
        padding: 8px 12px;
    }

    .related-card {
        min-width: 200px;
    }

    .page-header {
        padding: 20px 0;
    }

    .page-header h1 {
        font-size: 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 20px;
    }

    .footer-col {
        min-width: unset;
        width: 100%;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 90%;
        padding: 20px;
    }
}

/* Mobile portrait — 480px */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .header-left {
        flex: 0 0 110px;
    }

    .menu-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .main-menu {
        top: 58px;
    }

    .hero-main-section {
        min-height: 180px;
        padding: 15px 10px;
    }

    .section-title {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .product-item img {
        max-height: 75px;
    }

    .product-item p {
        font-size: 11px;
    }

    .product-wrapper {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .main-product-grid {
        grid-template-columns: 1fr;
    }

    .p-img,
    .product-img {
        height: 160px;
    }

    .main-title {
        font-size: 18px;
    }

    .desc-content p {
        font-size: 13px;
    }

    .image-box {
        max-width: 250px;
    }

    .info-box h1 {
        font-size: 17px;
    }

    .info-box p {
        font-size: 13px;
    }

    .tab-btn {
        font-size: 13px;
        padding: 7px 8px;
    }

    .spec-table {
        font-size: 12px;
    }

    .spec-table th,
    .spec-table td {
        padding: 5px 6px;
    }

    .related-card {
        min-width: 160px;
    }

    .related-card h4 {
        font-size: 12px;
    }

    .page-header h1 {
        font-size: 16px;
    }

    .get-in-touch {
        font-size: 14px;
        padding: 8px 16px;
    }

    .footer-col h3 {
        font-size: 15px;
    }

    .footer-col ul li a,
    .contact-info p {
        font-size: 13px;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    .map-container iframe {
        height: 180px;
    }

    .modal-content {
        width: 95%;
        padding: 16px;
    }

    .send-btn,
    .submit-btn {
        padding: 10px;
        font-size: 14px;
    }

    .dropdown-header a {
        font-size: 13px;
    }

    .submenu li a {
        font-size: 12px;
    }

    .icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/* Small phones — 360px */
@media (max-width: 360px) {
    .page-header h1 {
        font-size: 14px;
    }

    .info-box h1 {
        font-size: 15px;
    }

    .image-box {
        max-width: 210px;
    }

    .related-card {
        min-width: 140px;
    }

    .spec-table {
        font-size: 11px;
    }

    .footer-bottom p {
        font-size: 10px;
    }

    .section-title {
        font-size: 13px;
    }

    .main-product-grid {
        grid-template-columns: 1fr;
    }
}