/*
Theme Name: Blocksy Child
Theme URI: https://creativethemes.com/blocksy/
Author: CreativeThemes
Author URI: https://creativethemes.com
Description: DJI-style Modern Design for Huantong Coating Website
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blocksy-child
Template: blocksy
*/

/* ========================================
   Huantong Coating - DJI-Style Design System
   ======================================== */

/* Import Modern Fonts - Optimized with preconnect */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables - DJI Inspired */
:root {
    /* Colors */
    --color-black: #000000;
    --color-dark: #1a1a1a;
    --color-gray-900: #212121;
    --color-gray-800: #333333;
    --color-gray-700: #424242;
    --color-gray-600: #616161;
    --color-gray-500: #757575;
    --color-gray-400: #9e9e9e;
    --color-gray-300: #bdbdbd;
    --color-gray-200: #e0e0e0;
    --color-gray-100: #f5f5f5;
    --color-white: #ffffff;
    
    /* Brand Colors */
    --color-primary: #c41230;
    --color-primary-dark: #9a0e26;
    --color-primary-light: #e8153d;
    --color-accent: #1a365d;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-2xl: 8rem;
    --spacing-3xl: 12rem;
    
    /* Transitions */
    --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-very-slow: 1000ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    
    /* Z-index layers */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-overlay: 1000;
    --z-modal: 2000;
}

@media (min-width: 1200px) {
  .ht-header-top {
    padding: 6px 0;
  }
  .ht-header-top .ht-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .ht-header-top .ht-company-name {
    display: inline-block;
    max-width: 40%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .ht-header-top .ht-contact-info {
    display: inline-block;
    max-width: 58%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: right;
  }
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: var(--line-height-base);
    color: var(--color-dark);
    background-color: var(--color-white);
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    color: var(--color-gray-600);
    line-height: 1.8;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   Layout
   ======================================== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-narrow {
    max-width: 900px;
}

.container-wide {
    max-width: 1600px;
}

/* ========================================
   Section Base
   ======================================== */
.section {
    position: relative;
    overflow: hidden;
}

.section-dark {
    background-color: var(--color-black);
    color: var(--color-white);
}

.section-dark p {
    color: var(--color-gray-400);
}

.section-gray {
    background-color: var(--color-gray-100);
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

.section-padding-lg {
    padding: var(--spacing-3xl) 0;
}

/* ========================================
   Header / Navigation - Simple Corporate Style
   ======================================== */

/* Container */
.ht-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Fixed, overlay on hero */
.ht-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
}

/* When logged in with admin bar, adjust for it */
.admin-bar .ht-header {
    top: 32px;
}

/* Hero section - full screen height, content adjusted */
/* Removed redundant .hero class */

/* Hero content - add top margin to avoid header */
/* Other sections - normal flow */
.site-main {
    padding-top: 80px; /* Space for fixed header */
}

/* Homepage main also needs padding now because header is solid white */
.home .site-main, 
.page-template-home .site-main {
    padding-top: 80px;
}

/* Header Top Bar */
.ht-header-top {
    background: #f5f5f5;
    padding: 2px 0;
    font-size: 10px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.ht-header-top .ht-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ht-company-name {
    color: #666;
}

.ht-contact-info {
    color: #2d579a;
}

/* Header Main */
.ht-header-main {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ht-header-main .ht-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.ht-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.ht-logo img {
    height: 50px;
    width: auto;
    max-width: 180px;
}

.ht-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #2d579a;
}

/* Navigation */
.ht-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ht-nav-list li {
    position: relative;
}

.ht-nav-list li a {
    display: block;
    padding: 25px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    border-bottom: 3px solid transparent;
}

.ht-nav-list li a:hover,
.ht-nav-list li.current-menu-item a,
.ht-nav-list li.current_page_item a,
.ht-nav-list li.current-menu-ancestor a {
    color: #2d579a;
    border-bottom-color: #2d579a;
}

/* Mobile Menu Toggle */
.ht-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.ht-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
}

.ht-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ht-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.ht-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.ht-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.ht-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.ht-mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.ht-mobile-menu.active {
    left: 0;
}

.ht-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #2d579a;
    color: #fff;
}

.ht-mobile-menu-header span {
    font-size: 16px;
    font-weight: 600;
}

.ht-mobile-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.ht-mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ht-mobile-nav li {
    border-bottom: 1px solid #eee;
}

.ht-mobile-nav li a {
    display: block;
    padding: 15px 20px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

.ht-mobile-nav li a:hover {
    background: #f5f5f5;
    color: #2d579a;
}

.ht-mobile-nav li.current-menu-item a,
.ht-mobile-nav li.current_page_item a,
.ht-mobile-nav li.current-menu-ancestor a {
    background: #eef4ff;
    color: #2d579a;
    font-weight: 600;
}

/* ========================================
   Hero Section - Full Screen
   ======================================== */
.hero {
    position: relative;
    height: calc(100vh - 80px);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Darker overlay to make HTML text readable */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: var(--spacing-md);
    max-width: 900px;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.02em;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 6s ease-out;
}

.hero-slide.active img {
    transform: scale(1);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: calc(var(--spacing-lg) + 60px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-xs);
    z-index: 10;
}

.slider-dot {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--color-white);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-white);
    border-radius: 2px;
    animation: scroll-down 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll-down {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 20px;
    }
}

/* ========================================
   Product Showcase Section
   ======================================== */
.product-showcase {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.product-showcase-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.product-showcase-header h2 {
    margin-bottom: var(--spacing-sm);
}

.product-showcase-header p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Product - Large Card */
.featured-product {
    position: relative;
    margin-bottom: var(--spacing-xl);
    border-radius: 24px;
    overflow: hidden;
    background: var(--color-gray-100);
    min-height: 600px;
    display: flex;
    align-items: center;
}

.featured-product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
}

.featured-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-product-content {
    position: relative;
    z-index: 1;
    margin-left: auto;
    padding: var(--spacing-xl);
    max-width: 500px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    margin-right: var(--spacing-lg);
    border-radius: 16px;
}

.featured-product-content h3 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

.featured-product-content p {
    margin-bottom: var(--spacing-sm);
}

.featured-product-content .btn {
    margin-top: var(--spacing-sm);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.product-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-white);
    transition: var(--transition-normal);
    cursor: pointer;
    border: 1px solid var(--color-gray-200);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-card-image-link {
    display: block;
}

.product-card-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: var(--color-gray-100);
}

.product-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.product-card-content {
    padding: var(--spacing-md);
}

.product-card-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray-500);
    margin-bottom: var(--spacing-xs);
}

.product-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--color-dark);
}

.product-card-excerpt {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-sm);
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
}

.product-card-link::after {
    content: '\2192';
    transition: var(--transition-fast);
}

.product-card:hover .product-card-link::after {
    transform: translateX(4px);
}

/* ========================================
   Features Section - Full Width
   ======================================== */
.features {
    position: relative;
    padding: var(--spacing-3xl) 0;
    background: var(--color-dark);
    color: var(--color-white);
}

.features-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.features-header h2 {
    margin-bottom: var(--spacing-sm);
}

.features-header p {
    color: var(--color-gray-400);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-lg);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: 50%;
}

.feature-icon svg,
.feature-icon .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
    color: var(--color-white);
}

.feature-card h4 {
    margin-bottom: var(--spacing-xs);
    color: var(--color-white);
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--color-gray-400);
}

/* ========================================
   Stats Section
   ======================================== */
.stats {
    padding: var(--spacing-xl) 0;
    background: var(--color-gray-100);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    text-align: center;
}

.stat-item {
    padding: var(--spacing-md);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.stat-number span {
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray-600);
}

/* ========================================
   About Section - Split Layout
   ======================================== */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-xl);
    background: var(--color-white);
}

.about-content h2 {
    margin-bottom: var(--spacing-md);
}

.about-content p {
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

.about-content .btn {
    align-self: flex-start;
}

/* ========================================
   Technology Section
   ======================================== */
.technology {
    position: relative;
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-dark) 100%);
    color: var(--color-white);
}

.technology-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.technology-content h2 {
    margin-bottom: var(--spacing-md);
}

.technology-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
}

.technology-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.tech-feature {
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-feature h4 {
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
}

.tech-feature p {
    font-size: 0.875rem;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    position: relative;
    padding: var(--spacing-3xl) 0;
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
    background-size: 200px 200px;
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    margin-bottom: var(--spacing-sm);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   News Section
   ======================================== */
.news {
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--spacing-lg);
}

.news-header h2 {
    margin-bottom: 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.news-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-gray-100);
    transition: var(--transition-normal);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.news-card-image {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.news-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-content {
    padding: var(--spacing-md);
}

.news-card-date {
    font-size: 0.75rem;
    color: var(--color-gray-500);
    margin-bottom: var(--spacing-xs);
}

.news-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--color-dark);
}

.news-card-excerpt {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-xl);
    background: var(--color-dark);
    color: var(--color-white);
}

.contact-info h2 {
    margin-bottom: var(--spacing-md);
}

.contact-info p {
    color: var(--color-gray-400);
    margin-bottom: var(--spacing-lg);
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    color: var(--color-gray-300);
}

.contact-details .dashicons {
    color: var(--color-primary);
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-xl);
    background: var(--color-white);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(196, 18, 48, 0.4);
    color: var(--color-white);
}

.btn-secondary {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}

.btn-secondary:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-dark);
}

.btn-white:hover {
    background: var(--color-gray-100);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-dark);
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.footer-brand p {
    color: var(--color-gray-400);
    margin-top: var(--spacing-sm);
    max-width: 300px;
}

.footer-column h4 {
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--color-gray-400);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--color-gray-500);
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-primary);
}

/* ========================================
   Animations
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Parallax */
.parallax-bg {
    transition: transform 0.1s linear;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .product-grid,
    .news-grid,
    .technology-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-product {
        flex-direction: column;
        min-height: auto;
    }
    
    .featured-product-image {
        position: relative;
        width: 100%;
        height: 400px;
    }
    
    .featured-product-content {
        margin: var(--spacing-md);
        max-width: 100%;
    }
    
    .about,
    .contact {
        grid-template-columns: 1fr;
    }
    
    .about-image,
    .about-content,
    .contact-info,
    .contact-form-wrapper {
        min-height: 50vh;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .ht-header {
        top: 0;
    }
    
    .ht-header-top {
        display: none;
    }
    
    .ht-nav {
        display: none;
    }
    
    .ht-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .ht-header {
        top: 0;
    }
    
    .ht-header-top {
        display: none;
    }
    
    .ht-nav {
        display: none;
    }
    
    .ht-menu-toggle {
        display: flex;
    }
    
    .ht-logo img {
        height: 40px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .product-grid,
    .news-grid,
    .features-grid,
    .technology-features {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-primary {
    color: var(--color-primary);
}

.text-white {
    color: var(--color-white);
}

.bg-dark {
    background-color: var(--color-dark);
}

.bg-black {
    background-color: var(--color-black);
}

.bg-white {
    background-color: var(--color-white);
}

.bg-gray {
    background-color: var(--color-gray-100);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.mt-0 {
    margin-top: 0;
}

.mt-sm {
    margin-top: var(--spacing-sm);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

/* ========================================
   Color System Page Styles
   ======================================== */
.color-system-page {
    background: var(--color-white);
}

.ht-color-intro {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-dark) 100%);
    color: var(--color-white);
    text-align: center;
}

.ht-color-intro-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.ht-color-intro-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto;
}

.ht-app-section {
    padding: var(--spacing-xl) 0 var(--spacing-3xl);
    background: var(--color-gray-100);
}

.ht-app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.ht-app-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
}

.ht-app-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.ht-app-number {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-gray-200);
    line-height: 1;
}

.ht-app-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ht-app-qr {
    width: 180px;
    height: 180px;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    border-radius: 8px;
}

.ht-app-qr img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ht-app-info {
    width: 100%;
}

.ht-app-info h3 {
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.ht-app-info p {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-xs);
}

.ht-app-instruction {
    font-style: italic;
    margin-top: var(--spacing-sm) !important;
    color: var(--color-gray-500) !important;
}

.ht-app-app-name {
    font-weight: 600;
    color: var(--color-dark) !important;
}

.ht-app-description {
    margin-bottom: var(--spacing-xs) !important;
}

.ht-app-card-download-btn {
    margin-top: var(--spacing-md);
    padding: 0.75rem 1.5rem;
    font-size: 0.8125rem;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.ht-app-card-download-btn:hover {
    background: var(--color-primary_darken, #0056b3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Two Cards Side by Side */
.ht-two-cards {
    display: flex;
    gap: var(--spacing-xl);
    align-items: stretch;
    justify-content: center;
}

.ht-two-cards .ht-app-card {
    flex: 1;
    max-width: 33.33%;
    background: var(--color-white);
    border-radius: 16px;
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
}

.ht-two-cards .ht-app-card .ht-app-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-lg);
}

.ht-two-cards .ht-app-card .ht-app-qr {
    width: 150px;
    height: 150px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.ht-two-cards .ht-app-card .ht-app-info {
    flex: 1;
}

.ht-two-cards .ht-how-to-use-card {
    flex: 2;
    max-width: 66.67%;
    background: var(--color-white);
    border-radius: 16px;
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
}

.ht-two-cards .ht-how-to-use-card .ht-how-to-use-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--color-primary);
}

.ht-two-cards .ht-how-to-use-card .ht-how-to-use-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-gray-700);
}

.ht-two-cards .ht-how-to-use-card .ht-how-to-use-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: var(--spacing-sm) 0;
}

/* Mobile Responsiveness for Two Cards */
@media (max-width: 900px) {
    .ht-two-cards {
        flex-direction: column;
        align-items: center;
    }

    .ht-two-cards .ht-app-card,
    .ht-two-cards .ht-how-to-use-card {
        max-width: 100%;
        width: 100%;
        flex: auto;
    }

    .ht-two-cards .ht-app-card .ht-app-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .ht-two-cards .ht-app-card .ht-app-qr {
        width: 160px;
        height: 160px;
    }
}

/* How To Use Section */
.ht-how-to-use {
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
}

.ht-how-to-use-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: 16px;
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-lg);
}

.ht-how-to-use-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--color-primary);
}

.ht-how-to-use-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-gray-700);
}

.ht-how-to-use-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: var(--spacing-md) 0;
}

.ht-how-to-use-content h2,
.ht-how-to-use-content h3,
.ht-how-to-use-content h4 {
    color: var(--color-dark);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.ht-how-to-use-content p {
    margin-bottom: var(--spacing-md);
}

.ht-how-to-use-content ul,
.ht-how-to-use-content ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-xl);
}

.ht-how-to-use-content li {
    margin-bottom: var(--spacing-xs);
}

.ht-about-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
}

.ht-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.ht-about-info h2 {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.ht-about-company-name {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.ht-about-tagline {
    font-size: 1rem;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-md);
}

.ht-about-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.ht-about-social .ht-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-100);
    border-radius: 50%;
    color: var(--color-dark);
    transition: var(--transition-fast);
}

.ht-about-social .ht-social-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.ht-about-contact p {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-xs);
}

.ht-about-contact-form {
    background: var(--color-gray-100);
    padding: var(--spacing-lg);
    border-radius: 16px;
}

.ht-about-contact-form h2 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-lg);
}

.ht-color-contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.ht-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.ht-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ht-form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray-700);
}

.ht-form-group input[type="text"],
.ht-form-group input[type="email"],
.ht-form-group input[type="tel"],
.ht-form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-300);
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: var(--font-primary);
    transition: var(--transition-fast);
}

.ht-form-group input:focus,
.ht-form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(196, 18, 48, 0.1);
}

.ht-form-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.ht-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-gray-600);
    cursor: pointer;
}

.ht-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
}

.ht-verify-row {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.ht-verify-row input {
    flex: 1;
}

.ht-verify-image {
    height: 44px;
    border-radius: 8px;
}

.ht-company-address {
    padding: var(--spacing-xl) 0;
    background: var(--color-gray-100);
}

.ht-address-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.ht-address-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.ht-address-map iframe {
    display: block;
}

.ht-address-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ht-address-info h2 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-lg);
}

.ht-address-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.ht-address-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1rem;
    color: var(--color-gray-700);
    transition: var(--transition-fast);
}

.ht-address-link:hover {
    color: var(--color-primary);
}

.ht-address-link .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

/* Page Header Styles for Color System */
.ht-page-header {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-dark) 100%);
    color: var(--color-white);
    text-align: center;
}

.ht-page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ht-page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.ht-page-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.ht-page-eyebrow {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-sm);
}

.ht-page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.ht-page-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
}

.ht-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.ht-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.ht-breadcrumb a:hover {
    color: var(--color-white);
}

.ht-breadcrumb .separator {
    opacity: 0.5;
}

.ht-breadcrumb .current {
    color: var(--color-white);
}

/* ========================================
   Color System Responsive Styles
   ======================================== */
@media (max-width: 992px) {
    .ht-app-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .ht-about-grid {
        grid-template-columns: 1fr;
    }

    .ht-address-grid {
        grid-template-columns: 1fr;
    }

    .ht-address-map iframe {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .ht-color-intro {
        padding: var(--spacing-lg) 0;
    }

    .ht-app-section {
        padding: var(--spacing-lg) 0 var(--spacing-xl);
    }

    .ht-form-row {
        grid-template-columns: 1fr;
    }

    .ht-page-header {
        padding: 100px 0 60px;
    }
}

@media (max-width: 480px) {
    .ht-app-qr {
        width: 150px;
        height: 150px;
    }

    .ht-app-number {
        font-size: 3rem;
    }

    .ht-about-contact-form {
        padding: var(--spacing-md);
    }

    .ht-two-cards .ht-app-card {
        padding: var(--spacing-md);
    }

    .ht-two-cards .ht-app-card .ht-app-qr {
        width: 120px;
        height: 120px;
    }

    .ht-two-cards .ht-how-to-use-card {
        padding: var(--spacing-md);
    }

    .ht-two-cards .ht-how-to-use-card .ht-how-to-use-title {
        font-size: 1.1rem;
    }
}

/* Loading State */
.loading {
    opacity: 0;
    pointer-events: none;
}

.loaded {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.5s ease;
}

/* Hide element */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   Products Page Styles
   ======================================== */
.ht-page-header {
    position: relative;
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    background-color: var(--color-accent);
    color: var(--color-white);
    text-align: center;
}
.ht-page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-accent) 0%, #2d3748 100%);
    z-index: 0;
}
.ht-page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.ht-page-header-content {
    position: relative;
    z-index: 1;
}
.ht-page-title {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
}
.ht-page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-md);
}
.ht-breadcrumb {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}
.ht-breadcrumb a {
    color: var(--color-white);
}
.ht-breadcrumb .separator {
    margin: 0 var(--spacing-xs);
}

.ht-section {
    padding: var(--spacing-2xl) 0;
}
.ht-product-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}
.ht-filter-group {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}
.ht-filter-label {
    font-weight: 500;
    color: var(--color-gray-700);
}
.ht-filter-buttons {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
}
.ht-filter-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-gray-200);
    background: var(--color-white);
    color: var(--color-gray-700);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
}
.ht-filter-btn:hover, .ht-filter-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}
.ht-filter-select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-gray-200);
    border-radius: 4px;
    background: var(--color-white);
    min-width: 150px;
}

.ht-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}
.ht-product-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--color-gray-100);
    display: flex;
    flex-direction: column;
}
.ht-product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}
.ht-product-image-wrapper {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    background: var(--color-gray-100);
}
.ht-product-image, .ht-product-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.ht-product-card:hover .ht-product-image {
    transform: scale(1.05);
}
.ht-product-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-gray-300);
}
.ht-product-tags {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    display: flex;
    gap: var(--spacing-xs);
    z-index: 2;
}
.ht-product-tag {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 4px;
    font-weight: 500;
}
.ht-product-actions {
    position: absolute;
    bottom: var(--spacing-sm);
    right: var(--spacing-sm);
    display: flex;
    gap: var(--spacing-xs);
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-fast);
}
.ht-product-card:hover .ht-product-actions {
    opacity: 1;
    transform: translateY(0);
}
.ht-product-action-btn {
    width: 36px;
    height: 36px;
    background: var(--color-white);
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}
.ht-product-action-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.ht-product-content {
    padding: var(--spacing-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.ht-product-meta {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
    font-size: 0.875rem;
    color: var(--color-gray-500);
}
.ht-product-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}
.ht-product-title a {
    color: var(--color-dark);
}
.ht-product-title a:hover {
    color: var(--color-primary);
}
.ht-product-subtitle {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    margin-bottom: var(--spacing-sm);
}
.ht-product-excerpt {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}
.ht-product-footer {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: auto;
}
.ht-product-btn, .ht-product-inquiry-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 4px;
    text-align: center;
    flex: 1;
}
.ht-product-btn {
    background: var(--color-gray-100);
    color: var(--color-dark);
}
.ht-product-btn:hover {
    background: var(--color-gray-200);
}
.ht-product-inquiry-btn {
    background: var(--color-primary);
    color: var(--color-white);
}
.ht-product-inquiry-btn:hover {
    background: var(--color-primary-dark);
}

.ht-products-pagination {
    margin-top: var(--spacing-2xl);
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
}
.ht-products-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gray-200);
    border-radius: 4px;
    color: var(--color-gray-700);
    transition: var(--transition-fast);
}
.ht-products-pagination .page-numbers.current,
.ht-products-pagination .page-numbers:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}



/* ========================================
   Single Product Page Styles
   ======================================== */
.ht-product-hero {
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    background-color: var(--color-white);
}
.ht-product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}
@media (max-width: 992px) {
    .ht-product-hero-grid {
        grid-template-columns: 1fr;
    }
}
.ht-product-gallery {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}
.ht-product-main-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: var(--color-gray-100);
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ht-product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ht-product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
}
.ht-product-thumbnail {
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    aspect-ratio: 1/1;
}
.ht-product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ht-product-thumbnail.active,
.ht-product-thumbnail:hover {
    border-color: var(--color-primary);
}
.ht-product-info {
    display: flex;
    flex-direction: column;
}
.ht-product-breadcrumb {
    margin-bottom: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--color-gray-500);
}
.ht-product-breadcrumb a {
    color: var(--color-gray-600);
}
.ht-product-breadcrumb a:hover {
    color: var(--color-primary);
}
.ht-product-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-dark);
}
.ht-product-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-md);
}
.ht-product-specs-quick {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md);
    background: var(--color-gray-100);
    border-radius: 8px;
}
.ht-spec-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}
.ht-spec-icon {
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}
.ht-spec-content {
    display: flex;
    flex-direction: column;
}
.ht-spec-label {
    font-size: 0.75rem;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.ht-spec-value {
    font-weight: 500;
    color: var(--color-dark);
}
.ht-product-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}
.ht-product-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition-fast);
}
.ht-product-share {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-gray-200);
}
.ht-share-buttons {
    display: flex;
    gap: var(--spacing-sm);
}
.ht-share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-100);
    color: var(--color-gray-600);
    transition: var(--transition-fast);
}
.ht-share-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Tabs */
.ht-product-tabs {
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    /* overflow: hidden; Removed to allow sticky header */
}
.ht-tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--color-gray-200);
    background: var(--color-white) !important;
    overflow-x: auto;
    position: sticky;
    top: 80px; /* Height of the main header */
    z-index: 999;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.admin-bar .ht-tabs-nav {
    top: 112px;
}
@media screen and (max-width: 782px) {
    .admin-bar .ht-tabs-nav {
        top: 126px;
    }
}
.ht-tab-link {
    padding: 1rem 2rem;
    font-weight: 500;
    color: var(--color-gray-600);
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}
.ht-tab-link.active,
.ht-tab-link:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    background: var(--color-white);
}
.ht-tabs-content {
    padding: var(--spacing-xl);
}
.ht-tab-content {
    display: block; /* Changed from none to display all content */
    margin-bottom: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray-200);
    scroll-margin-top: 180px;
}
.ht-tab-content:first-child {
    border-top: none;
    padding-top: 0;
}
.ht-tab-content:last-child {
    margin-bottom: 0;
}
.ht-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}



/* ========================================
   Contact Page Styles
   ======================================== */
.ht-contact-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--color-gray-100);
}
.ht-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-3xl);
}
@media (max-width: 992px) {
    .ht-contact-grid {
        grid-template-columns: 1fr;
    }
}
.ht-contact-info {
    background: var(--color-gray-100);
    padding: var(--spacing-xl);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}
.ht-contact-info-header {
    margin-bottom: var(--spacing-xl);
}
.ht-contact-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}
.ht-contact-description {
    color: var(--color-gray-600);
}
.ht-contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}
.ht-contact-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}
.ht-contact-icon {
    width: 48px;
    height: 48px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}
.ht-contact-content h4 {
    margin-bottom: var(--spacing-xs);
    font-size: 1.125rem;
}
.ht-contact-content p, .ht-contact-content a {
    color: var(--color-gray-600);
    line-height: 1.6;
}
.ht-contact-content a:hover {
    color: var(--color-primary);
}
.ht-contact-social h4 {
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}
.ht-social-links {
    display: flex;
    gap: var(--spacing-sm);
}
.ht-social-link {
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}
.ht-social-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}
.ht-contact-form-wrapper {
    padding: var(--spacing-xl);
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-100);
}
.ht-contact-form-header {
    margin-bottom: var(--spacing-xl);
}
.ht-form-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}
.ht-form-description {
    color: var(--color-gray-600);
}
.ht-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}
@media (max-width: 768px) {
    .ht-form-row {
        grid-template-columns: 1fr;
    }
}
.ht-form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}
.ht-form-label {
    font-weight: 500;
    color: var(--color-dark);
    font-size: 0.875rem;
}
.ht-form-input, .ht-form-select, .ht-form-textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-300);
    border-radius: 4px;
    background: var(--color-white);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}
.ht-form-input:focus, .ht-form-select:focus, .ht-form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(196, 18, 48, 0.1);
}
.ht-form-textarea {
    resize: vertical;
    min-height: 120px;
}
.ht-form-submit {
    margin-top: var(--spacing-lg);
}
.ht-form-submit .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}
.ht-map-section {
    margin-top: var(--spacing-3xl);
    height: auto;
    min-height: 450px;
    background: var(--color-gray-100);
    border-radius: 8px;
    overflow: visible;
}


/* ========================================
   Mobile Optimization - Responsive Styles
   ======================================== */
@media (max-width: 992px) {
    .hero {
        height: auto;
        min-height: 100vh;
    }
    
    .hero-content-split {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .hero-copy {
        text-align: center;
    }
    
    .hero-panel {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-panel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-padding-lg {
        padding: var(--spacing-xl) 0;
    }
    
    .featured-product {
        min-height: auto;
        flex-direction: column;
    }
    
    .featured-product-image {
        position: relative;
        width: 100%;
        height: 300px;
    }
    
    .featured-product-content {
        margin: 0;
        max-width: 100%;
        border-radius: 0;
    }
    
    .featured-product-content h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem !important;
    }
    
    h2 {
        font-size: 1.75rem !important;
    }
    
    h3 {
        font-size: 1.5rem !important;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .hero-content {
        padding: var(--spacing-sm);
    }
    
    .hero-title {
        font-size: 1.75rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.875rem !important;
    }
    
    .hero-support-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-support-pill {
        font-size: 0.75rem;
    }
    
    .hero-panel-top h2 {
        font-size: 1.5rem !important;
    }
    
    .hero-panel-item strong {
        font-size: 0.875rem;
    }
    
    .hero-panel-item span {
        font-size: 0.75rem;
    }
    
    .product-showcase-header h2 {
        font-size: 1.5rem !important;
    }
    
    .product-showcase-header p {
        font-size: 0.875rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr !important;
    }
    
    .product-card-title {
        font-size: 1.125rem !important;
    }
    
    .product-card-excerpt {
        font-size: 0.875rem;
    }
    
    .about-content,
    .contact-info,
    .contact-form-wrapper {
        padding: var(--spacing-md) !important;
        min-height: auto !important;
    }
    
    .about-content h2,
    .contact-info h2 {
        font-size: 1.5rem !important;
    }
    
    .about-content p,
    .contact-info p {
        font-size: 0.875rem;
    }
    
    .features-header h2 {
        font-size: 1.5rem !important;
    }
    
    .features-header p {
        font-size: 0.875rem;
    }
    
    .feature-card {
        padding: var(--spacing-md) !important;
    }
    
    .feature-card h4 {
        font-size: 1.125rem !important;
    }
    
    .feature-card p {
        font-size: 0.875rem;
    }
    
    .technology-content h2 {
        font-size: 1.5rem !important;
    }
    
    .technology-content p {
        font-size: 0.875rem;
    }
    
    .tech-feature h4 {
        font-size: 1.125rem !important;
    }
    
    .tech-feature p {
        font-size: 0.875rem;
    }
    
    .news-header h2 {
        font-size: 1.5rem !important;
    }
    
    .news-card-title {
        font-size: 1.125rem !important;
    }
    
    .news-card-excerpt {
        font-size: 0.875rem;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .hero-panel-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .featured-product-content {
        padding: var(--spacing-md) !important;
    }
    
    .featured-product-content h3 {
        font-size: 1.5rem !important;
    }
    
    .featured-product-content p {
        font-size: 0.875rem;
    }
}




/* Transparent Header for Homepage */
.ht-header-transparent {
    background: transparent !important;
}
.ht-header-transparent .ht-header-top {
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}
.ht-header-transparent .ht-company-name,
.ht-header-transparent .ht-contact-info {
    color: #fff;
}
.ht-header-transparent .ht-header-main {
    background: transparent !important;
    box-shadow: none !important;
}
.ht-header-transparent .ht-logo-text {
    color: #fff !important;
}
.ht-header-transparent .ht-nav-list li a {
    color: #fff !important;
}
.ht-header-transparent .ht-nav-list li a:hover {
    color: var(--color-primary) !important;
}

/* Add scrolled state via JS */
.ht-header.scrolled {
    background: #fff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.ht-header.scrolled .ht-header-top {
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
    color: #666;
}
.ht-header.scrolled .ht-company-name {
    color: #666;
}
.ht-header.scrolled .ht-contact-info {
    color: #2d579a;
}
.ht-header.scrolled .ht-header-main {
    background: #fff !important;
}
.ht-header.scrolled .ht-logo-text {
    color: #2d579a !important;
}
.ht-header.scrolled .ht-nav-list li a {
    color: #333 !important;
}
.ht-header.scrolled .ht-nav-list li a:hover {
    color: var(--color-primary) !important;
}


/* Header Actions */
.ht-header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    height: 100%;
}

.ht-lang-switcher {
    position: relative;
    z-index: 100;
    height: 80px;
    display: flex;
    align-items: center;
}

.ht-lang-switcher .trp-shortcode-switcher__wrapper {
    height: 100%;
    display: flex;
    align-items: center;
}

.ht-lang-switcher .trp-language-switcher {
    border: none !important;
    background: transparent !important;
    overflow: hidden !important;
}

.ht-lang-switcher .trp-language-switcher:hover,
.ht-lang-switcher .trp-language-switcher.is-open {
    overflow: visible !important;
}

.ht-lang-switcher .trp-shortcode-overlay {
    height: 100%;
    display: flex;
    align-items: center;
}

.ht-lang-switcher .trp-current-language-item__wrapper {
    height: 100%;
    display: flex;
    align-items: center;
}

.ht-lang-switcher .trp-switcher-dropdown-list {
    background: #fff !important;
    border: 1px solid #e0e0e0 !important;
    border-top: none !important;
    border-radius: 0 0 8px 8px !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
    margin-top: 0 !important;
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    transform: none !important;
    overflow: visible !important;
}


/* ========================================
   Products Page Styles
   ======================================== */
.ht-page-header {
    position: relative;
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    background-color: var(--color-accent);
    color: var(--color-white);
    text-align: center;
}
.ht-page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-accent) 0%, #2d3748 100%);
    z-index: 0;
}
.ht-page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.ht-page-header-content {
    position: relative;
    z-index: 1;
}
.ht-page-title {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
}
.ht-page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-md);
}
.ht-breadcrumb {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}
.ht-breadcrumb a {
    color: var(--color-white);
}
.ht-breadcrumb .separator {
    margin: 0 var(--spacing-xs);
}

.ht-section {
    padding: var(--spacing-2xl) 0;
}
.ht-product-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}
.ht-filter-group {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}
.ht-filter-label {
    font-weight: 500;
    color: var(--color-gray-700);
}
.ht-filter-buttons {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
}
.ht-filter-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-gray-200);
    background: var(--color-white);
    color: var(--color-gray-700);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
}
.ht-filter-btn:hover, .ht-filter-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}
.ht-filter-select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-gray-200);
    border-radius: 4px;
    background: var(--color-white);
    min-width: 150px;
}

.ht-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}
.ht-product-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--color-gray-100);
    display: flex;
    flex-direction: column;
}
.ht-product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}
.ht-product-image-wrapper {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    background: var(--color-gray-100);
}
.ht-product-image, .ht-product-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.ht-product-card:hover .ht-product-image {
    transform: scale(1.05);
}
.ht-product-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-gray-300);
}
.ht-product-tags {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    display: flex;
    gap: var(--spacing-xs);
    z-index: 2;
}
.ht-product-tag {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 4px;
    font-weight: 500;
}
.ht-product-actions {
    position: absolute;
    bottom: var(--spacing-sm);
    right: var(--spacing-sm);
    display: flex;
    gap: var(--spacing-xs);
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-fast);
}
.ht-product-card:hover .ht-product-actions {
    opacity: 1;
    transform: translateY(0);
}
.ht-product-action-btn {
    width: 36px;
    height: 36px;
    background: var(--color-white);
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}
.ht-product-action-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.ht-product-content {
    padding: var(--spacing-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.ht-product-meta {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
    font-size: 0.875rem;
    color: var(--color-gray-500);
}
.ht-product-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}
.ht-product-title a {
    color: var(--color-dark);
}
.ht-product-title a:hover {
    color: var(--color-primary);
}
.ht-product-subtitle {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    margin-bottom: var(--spacing-sm);
}
.ht-product-excerpt {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}
.ht-product-footer {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: auto;
}
.ht-product-btn, .ht-product-inquiry-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 4px;
    text-align: center;
    flex: 1;
}
.ht-product-btn {
    background: var(--color-gray-100);
    color: var(--color-dark);
}
.ht-product-btn:hover {
    background: var(--color-gray-200);
}
.ht-product-inquiry-btn {
    background: var(--color-primary);
    color: var(--color-white);
}
.ht-product-inquiry-btn:hover {
    background: var(--color-primary-dark);
}

.ht-products-pagination {
    margin-top: var(--spacing-2xl);
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
}
.ht-products-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gray-200);
    border-radius: 4px;
    color: var(--color-gray-700);
    transition: var(--transition-fast);
}
.ht-products-pagination .page-numbers.current,
.ht-products-pagination .page-numbers:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* ========================================
   Single Product Page Styles
   ======================================== */
.ht-product-hero {
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    background-color: var(--color-white);
}
.ht-product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}
@media (max-width: 992px) {
    .ht-product-hero-grid {
        grid-template-columns: 1fr;
    }
}
.ht-product-gallery {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}
.ht-product-main-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: var(--color-gray-100);
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ht-product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ht-product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
}
.ht-product-thumbnail {
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    aspect-ratio: 1/1;
}
.ht-product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ht-product-thumbnail.active,
.ht-product-thumbnail:hover {
    border-color: var(--color-primary);
}
.ht-product-info {
    display: flex;
    flex-direction: column;
}
.ht-product-breadcrumb {
    margin-bottom: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--color-gray-500);
}
.ht-product-breadcrumb a {
    color: var(--color-gray-600);
}
.ht-product-breadcrumb a:hover {
    color: var(--color-primary);
}
.ht-product-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-dark);
}
.ht-product-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-md);
}
.ht-product-specs-quick {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md);
    background: var(--color-gray-100);
    border-radius: 8px;
}
.ht-spec-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}
.ht-spec-icon {
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}
.ht-spec-content {
    display: flex;
    flex-direction: column;
}
.ht-spec-label {
    font-size: 0.75rem;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.ht-spec-value {
    font-weight: 500;
    color: var(--color-dark);
}
.ht-product-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}
.ht-product-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition-fast);
}
.ht-product-share {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-gray-200);
}
.ht-share-buttons {
    display: flex;
    gap: var(--spacing-sm);
}
.ht-share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-100);
    color: var(--color-gray-600);
    transition: var(--transition-fast);
}
.ht-share-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Tabs */
.ht-product-tabs {
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    /* overflow: hidden; Removed to allow sticky header */
}
.ht-tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--color-gray-200);
    background: var(--color-white) !important;
    overflow-x: auto;
    position: sticky;
    top: 80px; /* Height of the main header */
    z-index: 999;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.admin-bar .ht-tabs-nav {
    top: 112px;
}
@media screen and (max-width: 782px) {
    .admin-bar .ht-tabs-nav {
        top: 126px;
    }
}
.ht-tab-link {
    padding: 1rem 2rem;
    font-weight: 500;
    color: var(--color-gray-600);
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    cursor: pointer;
}
.ht-tab-link.active,
.ht-tab-link:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    background: var(--color-white);
}
.ht-tabs-content {
    padding: var(--spacing-xl);
}
.ht-tab-content {
    display: block; /* Changed from none to display all content */
    margin-bottom: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray-200);
    scroll-margin-top: 180px;
}
.ht-tab-content:first-child {
    border-top: none;
    padding-top: 0;
}
.ht-tab-content:last-child {
    margin-bottom: 0;
}
.ht-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   Contact Page Styles
   ======================================== */
.ht-contact-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--color-gray-100);
}
.ht-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-3xl);
}
@media (max-width: 992px) {
    .ht-contact-grid {
        grid-template-columns: 1fr;
    }
}
.ht-contact-info {
    background: var(--color-gray-100);
    padding: var(--spacing-xl);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}
.ht-contact-info-header {
    margin-bottom: var(--spacing-xl);
}
.ht-contact-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}
.ht-contact-description {
    color: var(--color-gray-600);
}
.ht-contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}
.ht-contact-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}
.ht-contact-icon {
    width: 48px;
    height: 48px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}
.ht-contact-content h4 {
    margin-bottom: var(--spacing-xs);
    font-size: 1.125rem;
}
.ht-contact-content p, .ht-contact-content a {
    color: var(--color-gray-600);
    line-height: 1.6;
}
.ht-contact-content a:hover {
    color: var(--color-primary);
}
.ht-contact-social h4 {
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}
.ht-social-links {
    display: flex;
    gap: var(--spacing-sm);
}
.ht-social-link {
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}
.ht-social-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}
.ht-contact-form-wrapper {
    padding: var(--spacing-xl);
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-100);
}
.ht-contact-form-header {
    margin-bottom: var(--spacing-xl);
}
.ht-form-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}
.ht-form-description {
    color: var(--color-gray-600);
}
.ht-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}
@media (max-width: 768px) {
    .ht-form-row {
        grid-template-columns: 1fr;
    }
}
.ht-form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}
.ht-form-label {
    font-weight: 500;
    color: var(--color-dark);
    font-size: 0.875rem;
}
.ht-form-input, .ht-form-select, .ht-form-textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-300);
    border-radius: 4px;
    background: var(--color-white);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}
.ht-form-input:focus, .ht-form-select:focus, .ht-form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(196, 18, 48, 0.1);
}
.ht-form-textarea {
    resize: vertical;
    min-height: 120px;
}
.ht-form-submit {
    margin-top: var(--spacing-lg);
}
.ht-form-submit .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}
.ht-map-section {
    margin-top: var(--spacing-3xl);
    height: auto;
    min-height: 450px;
    background: var(--color-gray-100);
    border-radius: 8px;
    overflow: visible;
}


/* ========================================
   Mobile Optimization - Responsive Styles
   ======================================== */
@media (max-width: 992px) {
    .hero {
        height: auto;
        min-height: 100vh;
    }
    
    .hero-content-split {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .hero-copy {
        text-align: center;
    }
    
    .hero-panel {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-panel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-padding-lg {
        padding: var(--spacing-xl) 0;
    }
    
    .featured-product {
        min-height: auto;
        flex-direction: column;
    }
    
    .featured-product-image {
        position: relative;
        width: 100%;
        height: 300px;
    }
    
    .featured-product-content {
        margin: 0;
        max-width: 100%;
        border-radius: 0;
    }
    
    .featured-product-content h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem !important;
    }
    
    h2 {
        font-size: 1.75rem !important;
    }
    
    h3 {
        font-size: 1.5rem !important;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .hero-content {
        padding: var(--spacing-sm);
    }
    
    .hero-title {
        font-size: 1.75rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.875rem !important;
    }
    
    .hero-support-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-support-pill {
        font-size: 0.75rem;
    }
    
    .hero-panel-top h2 {
        font-size: 1.5rem !important;
    }
    
    .hero-panel-item strong {
        font-size: 0.875rem;
    }
    
    .hero-panel-item span {
        font-size: 0.75rem;
    }
    
    .product-showcase-header h2 {
        font-size: 1.5rem !important;
    }
    
    .product-showcase-header p {
        font-size: 0.875rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr !important;
    }
    
    .product-card-title {
        font-size: 1.125rem !important;
    }
    
    .product-card-excerpt {
        font-size: 0.875rem;
    }
    
    .about-content,
    .contact-info,
    .contact-form-wrapper {
        padding: var(--spacing-md) !important;
        min-height: auto !important;
    }
    
    .about-content h2,
    .contact-info h2 {
        font-size: 1.5rem !important;
    }
    
    .about-content p,
    .contact-info p {
        font-size: 0.875rem;
    }
    
    .features-header h2 {
        font-size: 1.5rem !important;
    }
    
    .features-header p {
        font-size: 0.875rem;
    }
    
    .feature-card {
        padding: var(--spacing-md) !important;
    }
    
    .feature-card h4 {
        font-size: 1.125rem !important;
    }
    
    .feature-card p {
        font-size: 0.875rem;
    }
    
    .technology-content h2 {
        font-size: 1.5rem !important;
    }
    
    .technology-content p {
        font-size: 0.875rem;
    }
    
    .tech-feature h4 {
        font-size: 1.125rem !important;
    }
    
    .tech-feature p {
        font-size: 0.875rem;
    }
    
    .news-header h2 {
        font-size: 1.5rem !important;
    }
    
    .news-card-title {
        font-size: 1.125rem !important;
    }
    
    .news-card-excerpt {
        font-size: 0.875rem;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .hero-panel-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .featured-product-content {
        padding: var(--spacing-md) !important;
    }
    
    .featured-product-content h3 {
        font-size: 1.5rem !important;
    }
    
    .featured-product-content p {
        font-size: 0.875rem;
    }
}

/* ========================================
   Solutions Carousel
   ======================================== */
.solutions-carousel {
    position: relative;
    width: 100%;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
}

.carousel-controls-side {
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--spacing-md);
    margin: 0;
    pointer-events: none;
    z-index: 10;
}

.carousel-controls-side .carousel-btn {
    pointer-events: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-dots-side {
    display: none;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    width: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    max-height: 520px;
    overflow: hidden;
    flex-shrink: 0;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide .featured-product {
    margin-top: 0;
    min-height: auto;
    max-height: 520px;
    height: 520px;
}

.carousel-slide .featured-product-image {
    max-height: 520px;
    height: 520px;
}

.carousel-slide .featured-product-image img {
    max-height: 520px;
    height: 520px;
    object-fit: cover;
}

.carousel-slide .featured-product-content {
    max-height: 520px;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
}

.carousel-slide .featured-product-content p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6; /* Adjust this to fit the box without scrollbar */
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: auto; /* Push footer/button down if needed */
}

.carousel-slide .featured-product-content .btn {
    margin-top: var(--spacing-lg);
    align-self: flex-start;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    color: var(--color-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-dots {
    display: flex;
    gap: var(--spacing-xs);
}

.carousel-dot {
    width: 40px;
    height: 4px;
    background: var(--color-gray-300);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dot:hover,
.carousel-dot.active {
    background: var(--color-primary);
}

.carousel-controls-bottom {
    display: flex;
}

.carousel-controls-side .carousel-dots-side {
    display: none;
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .carousel-btn {
        width: 36px;
        height: 36px;
    }
    
    .carousel-dot {
        width: 24px;
        height: 3px;
    }
    
    .carousel-slide {
        min-width: 100%;
        opacity: 0;
        transition: opacity 0.4s ease;
        max-height: none;
        height: auto;
        flex-shrink: 0;
    }
    
    .carousel-slide.active {
        opacity: 1;
    }
    
    .carousel-track {
        display: flex;
        flex-direction: row;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .carousel-container {
        overflow: hidden;
    }
    
    .carousel-slide .featured-product {
        max-height: none;
        height: auto;
        min-height: auto;
        flex-direction: column;
        position: relative;
        margin: 0;
    }
    
    .carousel-slide .featured-product-image {
        max-height: 250px;
        height: 250px;
        width: 100%;
        position: relative;
        flex-shrink: 0;
    }
    
    .carousel-slide .featured-product-image img {
        max-height: 250px;
        height: 250px;
        width: 100%;
        object-fit: cover;
    }
    
    .carousel-slide .featured-product-content {
        max-height: none;
        height: auto;
        padding: var(--spacing-md);
        position: relative;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        box-sizing: border-box;
        overflow: visible;
        flex-grow: 1;
    }
    
    .carousel-slide .featured-product-content h3 {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .carousel-slide .featured-product-content p {
        font-size: 0.875rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .carousel-controls-side {
        display: none;
    }
    
    .carousel-controls-bottom {
        display: flex;
        margin-top: var(--spacing-md);
        justify-content: center;
        padding-bottom: var(--spacing-md);
    }
    
    .solutions-carousel {
        height: auto;
        max-height: none;
    }
}

@media (min-width: 769px) {
    .carousel-controls-bottom {
        display: none;
    }
    
    .carousel-controls-side {
        display: flex;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        align-items: center;
        justify-content: space-between;
        padding: 0 var(--spacing-md);
        margin: 0;
        pointer-events: none;
        z-index: 10;
    }
    
    .carousel-controls-side .carousel-btn {
        pointer-events: auto;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .carousel-controls-side .carousel-dots-side {
        display: none;
    }
}

/* Contact Page Height Fixes - Override All */
.ht-contact-section {
    padding: var(--spacing-lg) 0 !important;
}
.ht-contact-grid {
    gap: var(--spacing-lg) !important;
    align-items: stretch !important;
}
.ht-contact-info, .ht-contact-form-wrapper {
    padding: var(--spacing-md) !important;
    height: 100% !important;
}
.ht-contact-info-header, .ht-contact-form-header {
    margin-bottom: var(--spacing-sm) !important;
}
.ht-contact-info-header h2, .ht-contact-form-header h2 {
    font-size: 1.5rem !important;
    margin-bottom: 4px !important;
}
.ht-contact-info-header p, .ht-contact-form-header p {
    font-size: 0.875rem !important;
    line-height: 1.4 !important;
}
.ht-contact-details {
    gap: 8px !important;
    margin-bottom: var(--spacing-md) !important;
}
.ht-contact-item {
    gap: 12px !important;
    margin-bottom: 0 !important;
}
.ht-contact-icon {
    width: 32px !important;
    height: 32px !important;
}
.ht-contact-icon span {
    font-size: 16px !important;
    width: 16px !important;
    height: 16px !important;
}
.ht-contact-content h4 {
    font-size: 0.875rem !important;
    margin-bottom: 2px !important;
}
.ht-contact-content p {
    font-size: 0.8125rem !important;
    line-height: 1.3 !important;
}
.ht-contact-social h4 {
    margin-bottom: 8px !important;
    font-size: 1rem !important;
}
.ht-form-row {
    margin-bottom: 8px !important;
    gap: 12px !important;
}
.ht-form-group {
    gap: 2px !important;
    margin-bottom: 8px !important;
}
.ht-form-group.ht-form-checkbox {
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
}
.ht-form-group.ht-form-checkbox input {
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
}
.ht-form-label {
    font-size: 0.8125rem !important;
}
.ht-form-input, .ht-form-select, .ht-form-textarea {
    padding: 6px 10px !important;
    font-size: 0.875rem !important;
    border-radius: 4px !important;
    height: 38px !important;
    min-height: 38px !important;
}
.ht-form-textarea {
    height: 80px !important;
    min-height: 80px !important;
    resize: none !important;
}
.ht-form-submit {
    margin-top: 12px !important;
}
.ht-form-submit .btn {
    padding: 10px !important;
    font-size: 1rem !important;
}
