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

body {
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    background: #f2f2f2;
    color: #333;
    scroll-behavior: smooth;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

/* ===== Header ===== */
.header {
    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    align-items: center;
    height: 70px;
}

.logo {
    width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.logo a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav {
    margin-left: auto;
}

.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-size: 19px;
    font-weight: 700;
    position: relative;
    transition: color 0.3s ease;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e60000;
    transition: width 0.3s ease;
}

.nav a:hover {
    color: #e60000;
}

.nav a:hover::after {
    width: 100%;
}

.nav a.active {
    color: #e60000;
}

.nav a.active::after {
    width: 100%;
}

/* ===== Mega Menu ===== */
.nav-dropdown {
    display: inline-block;
    position: relative;
    margin-left: 20px;
}

.nav-dropdown-trigger {
    margin-left: 0 !important;
    cursor: pointer;
}

.mega-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100vw;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-top: 2px solid #e60000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 200;
    padding: 30px 0 35px;
}

.nav-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-trigger {
    color: #e60000;
}

.nav-dropdown:hover .nav-dropdown-trigger::after {
    width: 100%;
}

.mega-menu-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 20px;
}

.mega-col {
    display: flex;
    flex-direction: column;
}

.mega-img {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.mega-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.mega-col:hover .mega-img img {
    transform: scale(1.05);
}

.mega-cat-title {
    font-size: 16px;
    font-weight: 800;
    color: #222;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.mega-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #e60000, #ff6666);
    border-radius: 1px;
    margin-bottom: 12px;
}

.mega-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mega-links a {
    margin-left: 0 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #555 !important;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease, padding-left 0.2s ease;
    padding: 2px 0;
}

.mega-links a::after {
    display: none !important;
}

.mega-links a:hover {
    color: #e60000 !important;
    padding-left: 5px;
}

/* ===== Product Hero Section ===== */
.product-hero {
    background: #fff;
    padding: 50px 0 40px;
}

.product-hero-inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Left: Image Gallery */
.product-gallery {
    flex: 0 0 540px;
}

.product-main-image {
    width: 540px;
    height: 440px;
    background: #f8f8f8;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
    border: 1px solid #eee;
    cursor: zoom-in;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
}

.product-main-image:hover img {
    transform: scale(1.05);
}

.product-thumbs {
    display: flex;
    gap: 12px;
}

.product-thumbs .thumb {
    width: 85px;
    height: 85px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f8f8;
}

.product-thumbs .thumb:hover {
    border-color: #ccc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-thumbs .thumb.active {
    border-color: #e60000;
    box-shadow: 0 2px 10px rgba(230, 0, 0, 0.2);
}

.product-thumbs .thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Right: Product Info */
.product-info {
    flex: 1;
    padding-top: 10px;
}

.product-info .brand-tag {
    display: inline-block;
    background: #e60000;
    color: #fff;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    margin-bottom: 18px;
    letter-spacing: 1.5px;
}

.product-info h1 {
    font-size: 30px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-info .model-number {
    font-size: 14px;
    color: #888;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.product-info .product-desc {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 35px;
}

.product-info .product-desc p {
    margin-bottom: 14px;
}

.btn-inquiry {
    display: inline-block;
    background: linear-gradient(135deg, #e60000, #cc0000);
    color: #fff;
    padding: 15px 45px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(230, 0, 0, 0.25);
}

.btn-inquiry:hover {
    background: linear-gradient(135deg, #cc0000, #aa0000);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 0, 0, 0.35);
}

/* ===== Tab Navigation ===== */
.product-tabs {
    background: #fff;
    border-bottom: 3px solid #eee;
    position: sticky;
    top: 70px;
    z-index: 50;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.product-tabs .container {
    display: flex;
    gap: 0;
}

.product-tabs a {
    padding: 18px 32px;
    text-decoration: none;
    color: #666;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.product-tabs a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: background 0.3s ease;
}

.product-tabs a:hover {
    color: #e60000;
    background: rgba(230, 0, 0, 0.03);
}

.product-tabs a.active {
    color: #e60000;
    font-weight: 700;
}

.product-tabs a.active::after {
    background: #e60000;
}

/* ===== Product Detail - Magazine Layout ===== */
.product-detail-section {
    background: #fff;
    padding: 70px 0 80px;
}

.detail-header {
    text-align: center;
    margin-bottom: 60px;
}

.detail-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.detail-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e60000, #ff4444);
    border-radius: 2px;
}

.detail-header p {
    font-size: 15px;
    color: #777;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.7;
}

/* Magazine style: image center, text around with connecting lines */
.detail-magazine {
    display: grid;
    grid-template-columns: 1fr 420px 1fr;
    gap: 0;
    align-items: start;
    position: relative;
}

.detail-magazine .detail-center-img {
    grid-column: 2;
    grid-row: 1 / 4;
    text-align: center;
    position: sticky;
    top: 180px;
    padding: 20px 0;
    z-index: 2;
}

.detail-magazine .detail-center-img img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.08));
    transition: transform 0.5s ease;
}

.detail-magazine .detail-center-img img:hover {
    transform: scale(1.02);
}

.detail-left {
    grid-column: 1;
    text-align: right;
    padding-right: 0;
}

.detail-right {
    grid-column: 3;
    text-align: left;
    padding-left: 0;
}

.detail-point {
    margin-bottom: 30px;
    padding: 18px 24px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.detail-point:hover {
    background: #fafafa;
    transform: translateY(-2px);
}

/* ---- SVG Connecting Lines & Hotspot Dots ---- */

/* SVG overlay canvas — spans the entire magazine grid */
.detail-magazine {
    position: relative;
}

.feature-lines-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: visible;
}

.feature-lines-svg polyline {
    fill: none;
    stroke: #e60000;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.55;
    transition: stroke-width 0.3s ease, opacity 0.3s ease;
}

/* Draw-in animation */
.feature-lines-svg polyline.animate-in {
    animation: lineDrawIn 0.8s ease forwards;
}

@keyframes lineDrawIn {
    from {
        stroke-dashoffset: var(--line-length);
    }
    to {
        stroke-dashoffset: 0;
    }
}

/* Hover: highlight active line, dim others */
.detail-magazine.has-hover .feature-lines-svg polyline {
    opacity: 0.15;
    stroke-width: 1;
}

.detail-magazine.has-hover .feature-lines-svg polyline.active {
    opacity: 1;
    stroke-width: 2.5;
    filter: drop-shadow(0 0 4px rgba(230, 0, 0, 0.4));
}

/* Hotspot dots on the product image */
.hotspot-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e60000;
    border: 2.5px solid #fff;
    box-shadow: 0 0 0 2px #e60000, 0 2px 8px rgba(230, 0, 0, 0.35);
    transform: translate(-50%, -50%);
    z-index: 6;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.hotspot-dot.visible {
    opacity: 1;
}

/* Pulsing ring animation */
.hotspot-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(230, 0, 0, 0.5);
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

/* Hover: dim inactive dots, enlarge active */
.detail-magazine.has-hover .hotspot-dot {
    opacity: 0.2;
}

.detail-magazine.has-hover .hotspot-dot.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 0 2px #e60000, 0 4px 15px rgba(230, 0, 0, 0.55);
}

/* Ensure detail-point padding gives visual space toward lines */
.detail-left .detail-point {
    padding-right: 20px;
}

.detail-right .detail-point {
    padding-left: 20px;
}

.detail-point h4 {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.detail-point p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

/* ===== Factory Showcase ===== */
.factory-showcase {
    background: #f5f5f5;
    padding: 70px 0 80px;
}

.factory-showcase .section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: #111;
}

.factory-showcase .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e60000, #ff6666);
    border-radius: 2px;
}

.factory-showcase .section-desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 45px;
    line-height: 1.7;
    max-width: 800px;
}

.factory-block {
    display: flex;
    gap: 0;
    margin-bottom: 35px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    background: #fff;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.factory-block:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.factory-block.reverse {
    flex-direction: row-reverse;
}

.factory-block-img {
    flex: 6;
    position: relative;
    min-height: 380px;
    overflow: hidden;
}

.factory-block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.factory-block:hover .factory-block-img img {
    transform: scale(1.05);
}

.factory-block-img .overlay-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.factory-block-img .overlay-title h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.factory-block-img .overlay-title .subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 5px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    font-style: italic;
}

.factory-block-text {
    flex: 4;
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.factory-block-text h3 {
    font-size: 23px;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 15px;
}

.factory-block-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #e60000;
    border-radius: 2px;
}

.factory-block.reverse .factory-block-text h3::after {
    left: auto;
    right: 0;
}

.factory-block-text p {
    font-size: 14px;
    line-height: 1.9;
    color: #666;
}

/* ===== Video Showcase Section ===== */
.video-showcase {
    background: #fff;
    padding: 70px 0 80px;
}

.video-showcase .section-title-center {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #111;
}

.video-showcase .section-subtitle-center {
    text-align: center;
    font-size: 15px;
    color: #777;
    margin-bottom: 45px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    background: #fff;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.video-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.video-card:hover .video-card-img img {
    transform: scale(1.08);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: rgba(230, 0, 0, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(230, 0, 0, 0.3);
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #e60000;
}

.video-play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 0 11px 20px;
    border-color: transparent transparent transparent #fff;
    margin-left: 4px;
}

.video-card-body {
    padding: 20px;
    text-align: center;
}

.video-card-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}

.video-card-body p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

/* ===== Specs Section ===== */
.specs-section {
    background: #fff;
    padding: 0;
    overflow: hidden;
}

/* Specs table area */
.specs-table-area {
    padding: 60px 0 70px;
}

.specs-section .section-title-center {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #111;
}

.specs-section .section-subtitle-center {
    text-align: center;
    font-size: 15px;
    color: #777;
    margin-bottom: 40px;
}

.specs-table-wrapper {
    overflow-x: auto;
    border-radius: 14px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.specs-table thead th {
    background: linear-gradient(135deg, #e60000, #cc0000);
    color: #fff;
    padding: 16px 22px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.specs-table thead th:first-child {
    text-align: left;
    background: linear-gradient(135deg, #cc0000, #aa0000);
}

.specs-table tbody td {
    padding: 14px 22px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    transition: background 0.2s ease;
}

.specs-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: #333;
    background: #fafafa;
}

.specs-table tbody tr:hover {
    background: #fef5f5;
}

.specs-table tbody tr:hover td:first-child {
    background: #fef0f0;
}

.specs-table tbody tr:last-child td {
    border-bottom: none;
}

/* ===== FAQ + Inquiry Section ===== */
.faq-inquiry-section {
    background: #f5f5f5;
    padding: 70px 0 80px;
}

.faq-inquiry-row {
    display: flex;
    gap: 45px;
    align-items: flex-start;
}

/* Left FAQ */
.faq-column {
    flex: 1;
}

.faq-column h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #111;
}

.faq-column .faq-intro {
    font-size: 14px;
    color: #666;
    margin-bottom: 28px;
    line-height: 1.7;
}

.faq-column .faq-big-img {
    width: 100%;
    height: 280px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.faq-column .faq-big-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.faq-column .faq-big-img:hover img {
    transform: scale(1.03);
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 14px;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.faq-question {
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-left: 4px solid #e60000;
    transition: background 0.3s ease;
}

.faq-item:hover .faq-question {
    background: #fef8f8;
}

.faq-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #e60000;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #fef0f0;
    border-radius: 50%;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: #e60000;
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.5s ease;
    padding: 0 24px;
    font-size: 14px;
    line-height: 1.9;
    color: #666;
    background: #fff;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px 24px;
    border-top: 1px solid #f0f0f0;
}

/* Right Inquiry Form */
.inquiry-card {
    flex: 0 0 400px;
    background: linear-gradient(135deg, #e60000, #cc0000);
    border-radius: 18px;
    padding: 40px 35px;
    color: #fff;
    box-shadow: 0 15px 50px rgba(230, 0, 0, 0.25);
    position: sticky;
    top: 180px;
}

.inquiry-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.inquiry-card .inquiry-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
}

.inquiry-card .form-field {
    margin-bottom: 16px;
}

.inquiry-card .form-field input,
.inquiry-card .form-field textarea {
    width: 100%;
    padding: 13px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    transition: all 0.3s ease;
}

.inquiry-card .form-field input:focus,
.inquiry-card .form-field textarea:focus {
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.inquiry-card .form-field input::placeholder,
.inquiry-card .form-field textarea::placeholder {
    color: #aaa;
}

.inquiry-card .form-field textarea {
    height: 90px;
    resize: vertical;
}

.inquiry-card .btn-submit {
    display: block;
    width: 100%;
    padding: 14px;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
}

.inquiry-card .btn-submit:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ===== Scroll Animations ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== Footer (reuse from index) ===== */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 0;
    width: 100%;
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-section h3 {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: capitalize;
    position: relative;
    padding-left: 20px;
}

.footer-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background-color: #e60000;
}

.footer-section p {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.footer-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #fff;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00d4d4;
}

.footer-section .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #fff;
    font-size: 14px;
}

.footer-section .contact-item .icon-wrapper {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.footer-section .contact-item svg {
    width: 14px;
    height: 14px;
    fill: #fff;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #e60000;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
    width: 100%;
}

.footer-bottom p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* ===== Sidebar (reuse from index) ===== */
.sidebar-actions {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    width: 60px;
    background-color: rgba(158, 158, 158, 0.85);
    border-radius: 8px 0 0 8px;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.side-item-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.side-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 50px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.side-item svg {
    width: 28px;
    height: 28px;
    fill: #fff;
    transition: fill 0.3s ease;
}

.hover-panel {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #2b5797;
    border-radius: 30px;
    padding: 12px 70px 12px 25px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    min-width: 200px;
}

.hover-panel-text {
    color: #fff;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hover-panel-image {
    padding: 15px 70px 15px 15px;
    border-radius: 20px 30px 20px 20px;
}

.hover-panel-image img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    display: block;
}

.side-item-wrapper:hover .hover-panel {
    opacity: 1;
    visibility: visible;
}

.side-item-wrapper:hover .side-item {
    background-color: #2b5797;
    border-radius: 0 8px 8px 0;
}

.side-item-wrapper:hover .side-item svg {
    fill: #fff;
}