@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sarabun:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

:root {
    --primary-color: #001a35;
    --primary-light: #002e5d;
    --primary-dark: #000d1b;
    --accent-color: #d59b20;
    --accent-hover: #b88212;
    --accent-light: #fdf8eb;
    --text-color: #333333;
    --text-muted: #666666;
    --text-light: #999999;
    --bg-light: #f4f6f9;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --font-family: 'Prompt', sans-serif;
    --font-secondary: 'Sarabun', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --transition: all 0.3s ease;
    --max-width: 1200px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

/* Common Layout Containers */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 60px 0;
}

/* Utility Classes */
.bg-light { background-color: var(--bg-light); }
.bg-primary { background-color: var(--primary-color); color: var(--bg-white); }
.bg-accent { background-color: var(--accent-color); color: var(--bg-white); }
.text-accent { color: var(--accent-color); }
.text-center { text-align: center; }
.flex { display: flex; }
.grid { display: grid; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

/* Spacing Utilities */
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.pt-20 { padding-top: 20px !important; }
.pb-20 { padding-bottom: 20px !important; }
.pt-30 { padding-top: 30px !important; }
.pb-30 { padding-bottom: 30px !important; }
.pt-40 { padding-top: 40px !important; }
.pb-40 { padding-bottom: 40px !important; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

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

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

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

/* Typography styles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

.sub-title {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

/* HEADER STYLING */
.top-header {
    background-color: var(--primary-color);
    color: #cbd5e1;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-header-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-header-info span, .top-header-info a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-header-info a:hover {
    color: var(--accent-color);
}

.main-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

.main-header.sticky {
    padding: 5px 0;
    box-shadow: var(--shadow-md);
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: 50px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 4.5px;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* HERO SLIDER (Home Page) */
.hero-slider {
    position: relative;
    height: 550px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,26,53,0.9) 0%, rgba(0,26,53,0.7) 40%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: center;
}

.slide-content {
    color: var(--bg-white);
    max-width: 650px;
}

.slide-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease forwards;
}

.slide-content p {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.slide-actions {
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.slide-features {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    animation: fadeInUp 1s ease 0.9s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.slide-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px;
    border-radius: 6px;
    width: 100px;
}

.slide-feature-item svg {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
    fill: var(--accent-color);
}

.slide-feature-item span {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Slider Controls */
.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.slider-prev:hover, .slider-next:hover {
    background: var(--accent-color);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* PAGE HEADER BANNER */
.page-banner {
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--bg-white);
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,26,53,0.95) 0%, rgba(0,26,53,0.5) 100%);
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.page-banner-desc {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.breadcrumbs {
    font-size: 0.9rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumbs a:hover {
    color: var(--accent-color);
}

/* TRUST CARD ROW */
.trust-cards-wrapper {
    background-color: var(--bg-light);
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.trust-card {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-bottom: 3px solid var(--accent-color);
}

.trust-icon-box {
    background: var(--accent-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon-box svg {
    width: 26px;
    height: 26px;
    fill: var(--accent-color);
}

.trust-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.trust-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-secondary);
}

/* WHY CHOOSE US & ABOUT SPLIT (Home) */
.about-home-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

.why-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.why-item-icon {
    width: 22px;
    height: 22px;
    background-color: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.why-item-icon svg {
    width: 12px;
    height: 12px;
    fill: var(--accent-color);
}

.why-item-text h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.why-item-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.about-company-box {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 30px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-company-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.about-company-desc {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.about-company-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.about-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.about-contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-color);
}

.about-company-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 220px;
}

.about-company-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-company-img:hover img {
    transform: scale(1.05);
}

/* ABOUT US PAGE STYLES */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

.about-intro-text p {
    margin-bottom: 20px;
    font-family: var(--font-secondary);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.about-features-tags {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.about-tag-item {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-tag-item svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-color);
}

.about-tag-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.about-hq-box {
    background: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.about-hq-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 12px;
}

.about-hq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-hq-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.9rem;
}

.about-hq-item svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.about-hq-item label {
    font-weight: 600;
    color: var(--accent-color);
    display: block;
    margin-bottom: 2px;
}

.about-hq-item span {
    font-family: var(--font-secondary);
    color: #e2e8f0;
}

/* Vision & Mission Row */
.vision-mission-row {
    background-color: var(--bg-white);
}

.about-vm-container {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr auto 1.2fr;
    gap: 45px;
    align-items: start;
}

.about-vm-block {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.about-vm-icon-circle {
    width: 90px;
    height: 90px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.about-vm-icon-circle svg {
    width: 46px;
    height: 46px;
}

.about-vm-content {
    flex-grow: 1;
}

.about-vm-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    margin-top: 0;
}

.about-vm-content h3 .vm-accent {
    color: var(--accent-color);
}

.about-vm-content p {
    font-family: var(--font-secondary);
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.about-vm-divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    height: 120px;
    align-self: center;
}

.about-vm-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-vm-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-secondary);
    color: #ffffff;
    font-size: 0.92rem;
    line-height: 1.5;
}

.about-vm-list li .check-icon {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Why Us Highlight grid */
.why-us-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.why-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px auto;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-color);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.stat-sublabel {
    font-size: 0.75rem;
    color: var(--text-light);
    font-family: var(--font-secondary);
    margin-top: 2px;
}

/* Gallery Strip */
.gallery-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.gallery-item {
    border-radius: 6px;
    overflow: hidden;
    height: 120px;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* About CTA bar */
.cta-bar {
    background: #f8fafc;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-bar-contacts {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    flex-grow: 1;
}

.cta-bar-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.cta-bar-contact-item:hover {
    transform: translateY(-2px);
}

.cta-bar-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.cta-bar-contact-item:hover .cta-bar-icon-circle {
    background-color: var(--accent-hover);
    box-shadow: 0 4px 8px rgba(213, 155, 32, 0.3);
}

.cta-bar-icon-circle svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.cta-bar-text-group {
    display: flex;
    flex-direction: column;
}

.cta-bar-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
}

.cta-bar-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-secondary);
    line-height: 1.4;
    margin-top: 2px;
}

/* Outline CTA Button */
.btn-outline-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    background-color: transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-outline-cta:hover {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-outline-cta svg {
    transition: transform 0.3s ease;
}

.btn-outline-cta:hover svg {
    transform: translateX(4px);
}

/* PRODUCTS PAGE STYLES */
.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

.sidebar-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.sidebar-title {
    background: var(--primary-color);
    color: white;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 700;
    border-bottom: 2px solid var(--accent-color);
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
}

.sidebar-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.sidebar-link:last-child {
    border-bottom: none;
}

.sidebar-link svg {
    width: 12px;
    height: 12px;
    fill: var(--text-light);
    transition: var(--transition);
}

.sidebar-link:hover, .sidebar-link.active {
    background: var(--accent-light);
    color: var(--accent-color);
    padding-left: 25px;
}

.sidebar-link:hover svg, .sidebar-link.active svg {
    fill: var(--accent-color);
    transform: translateX(3px);
}

.sidebar-help-card {
    background: var(--accent-light);
    border: 1px solid rgba(213, 155, 32, 0.2);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.sidebar-help-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.sidebar-help-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-secondary);
    margin-bottom: 15px;
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 15px;
}

.catalog-info {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.catalog-filters {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-select {
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-color);
}

.view-toggles {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.view-btn {
    background: white;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.view-btn svg {
    width: 16px;
    height: 16px;
    fill: var(--text-light);
}

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

.view-btn.active svg {
    fill: white;
}

/* Product Cards Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.product-img-box {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #f1f5f9;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
    line-height: 1.3;
}

.product-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-secondary);
    margin-bottom: 12px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-action {
    margin-top: auto;
}

.product-btn {
    width: 100%;
    background: var(--bg-light);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    padding: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    text-align: center;
    display: block;
    cursor: pointer;
    transition: var(--transition);
}

.product-card:hover .product-btn {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.page-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.page-item:hover, .page-item.active {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* SERVICES PAGE STYLES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    background: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.service-img {
    height: 150px;
    position: relative;
    overflow: hidden;
}

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

.service-num {
    position: absolute;
    top: 136px; /* overlapping the image bottom (150px image height - 14px half of badge height) */
    left: 20px;
    background: var(--primary-color);
    color: white;
    width: 44px;
    height: 28px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 10;
}

.service-content {
    padding: 24px;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.service-desc {
    font-size: 0.9rem;
    color: #475569;
    font-family: var(--font-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
    margin-top: auto; /* aligns the link to the bottom */
}

.service-more .arrow {
    font-size: 1rem;
    display: inline-block;
    transition: transform 0.2s ease;
}

.service-card:hover .service-more {
    color: var(--accent-color);
}

.service-card:hover .service-more .arrow {
    transform: translateX(4px);
}

/* Service Steps Flowchart */
.steps-section {
    background-color: var(--bg-light);
}

.steps-card {
    background-color: var(--primary-color);
    color: white;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.steps-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
}

.steps-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-top: 10px;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 12px;
    min-height: 48px;
}

.step-badge {
    position: absolute;
    left: calc(50% - 46px);
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--accent-color);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 2;
}

.step-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-arrow {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
    color: rgba(255, 255, 255, 0.4);
}

.step-arrow svg {
    width: 100%;
    height: auto;
}

.step-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 8px;
    line-height: 1.4;
}

.step-desc {
    font-size: 0.82rem;
    color: #cbd5e1;
    font-family: var(--font-secondary);
    line-height: 1.6;
}

/* Responsiveness for steps flow */
@media (max-width: 992px) {
    .steps-flow {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px 20px;
    }
    .step-item {
        width: calc(33.333% - 20px);
        flex: none;
    }
    .step-arrow {
        display: none;
    }
}

@media (max-width: 576px) {
    .step-item {
        width: calc(50% - 10px);
    }
}


/* Service Bottom Strip */
.service-cta-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.service-cta-card {
    position: relative;
    display: flex;
    background-color: #f1f5f9;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 8px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.service-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 48%;
    background-color: #f1f5f9;
    clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
    z-index: 1;
}

.service-cta-content {
    position: relative;
    width: 42%;
    z-index: 2;
    padding: 40px 0 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-cta-content h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.35;
}

.service-cta-content p {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 24px;
    line-height: 1.5;
    font-family: var(--font-secondary);
}

.service-cta-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.service-cta-btn {
    background-color: var(--accent-color);
    color: white;
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.service-cta-btn:hover {
    background-color: var(--accent-hover);
    color: white;
}

.service-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: opacity 0.2s ease;
}

.service-cta-phone:hover {
    opacity: 0.85;
}

.phone-icon {
    width: 20px;
    height: 20px;
    fill: var(--accent-color);
}

.service-cta-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 58%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hide-mobile {
    display: inline;
}

/* CONTACT PAGE STYLES */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-info-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    padding: 35px 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.contact-info-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.contact-info-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 1.5px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
}

.contact-info-item:first-child {
    padding-top: 0;
}

.contact-info-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.c-icon-box {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.c-icon-box svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-color);
}

.c-text-box h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.c-text-box p {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-family: var(--font-secondary);
    line-height: 1.5;
}

.contact-follow-card {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 0 0 12px 12px;
    padding: 30px;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.contact-follow-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.contact-follow-card .follow-subtitle {
    font-size: 0.8rem;
    color: #cbd5e1;
    font-family: var(--font-secondary);
    margin-bottom: 20px;
    line-height: 1.4;
}

.contact-follow-card .social-links {
    display: flex;
    gap: 12px;
}

.contact-follow-card .social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-follow-card .social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.contact-follow-card .social-btn:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Contact Form */
.contact-form-wrapper {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

@media (min-width: 992px) {
    .contact-form-wrapper {
        border-left: 1px solid #e2e8f0;
        padding-left: 50px;
    }
}

.contact-form-wrapper h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-form-wrapper p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    display: none;
}

.form-control {
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 0.92rem;
    transition: var(--transition);
    background-color: #ffffff;
    width: 100%;
    color: var(--text-color);
}

.form-control::placeholder {
    color: #94a3b8;
}

.form-control:focus {
    border-color: var(--accent-color);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(213, 155, 32, 0.1);
}

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



.btn-submit {
    min-width: 150px;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 0.95rem;
    background-color: var(--accent-color);
    color: white;
    display: inline-flex;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-privacy-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 15px;
    font-family: var(--font-secondary);
}

.form-privacy-note .lock-icon {
    width: 14px;
    height: 14px;
    fill: #64748b;
    flex-shrink: 0;
}

/* Map Section */
.map-section {
    border-top: 1px solid var(--border-color);
}

.map-container {
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-info-window {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 6px;
    width: 280px;
    box-shadow: var(--shadow-lg);
    z-index: 5;
}

.map-info-window h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent-color);
}

.map-info-window p {
    font-size: 0.75rem;
    color: #cbd5e1;
    font-family: var(--font-secondary);
    margin-bottom: 12px;
}

/* FOOTER STYLES */
.main-footer {
    background-color: #0b1522;
    color: #cbd5e1;
    padding: 60px 0 20px 0;
    font-size: 0.9rem;
    border-top: 4px solid var(--accent-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-col h3 {
    color: white;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-desc {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 15px 0 20px 0;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: var(--transition);
}

.social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.footer-links a::before {
    content: '›';
    font-size: 1.1rem;
    color: var(--accent-color);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8rem;
    color: #94a3b8;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    fill: var(--accent-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-family: var(--font-secondary);
}

.qr-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    max-width: 160px;
}

.qr-img-box {
    background: white;
    padding: 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 8px;
}

.qr-img-box img {
    width: 100px;
    height: 100px;
}

.qr-card p {
    font-size: 0.65rem;
    line-height: 1.3;
    color: #cbd5e1;
    font-weight: 500;
}

.copyright-bar {
    text-align: center;
    padding-top: 20px;
    font-size: 0.75rem;
    color: #64748b;
    font-family: var(--font-secondary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MODAL SYSTEM (For Forms Success) */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 200;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.4s ease;
}

.modal-icon {
    width: 70px;
    height: 70px;
    background: #e6f4ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.modal-icon svg {
    width: 36px;
    height: 36px;
    fill: #137333;
}

.modal-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.modal-content p {
    color: var(--text-muted);
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

/* RESPONSIVE MEDIA QUERIES */

@media (max-width: 1199px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .about-home-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .why-us-page-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .products-layout {
        grid-template-columns: 1fr;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .steps-flow {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    .steps-flow::before {
        display: none;
    }
    .step-item {
        width: 40%;
    }
}

@media (max-width: 767px) {
    html {
        font-size: 15px;
    }
    .top-header {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 30px;
        transition: 0.4s ease;
        box-shadow: var(--shadow-lg);
    }
    .nav-menu.active {
        left: 0;
    }
    .main-header-btn {
        display: none;
    }
    .hero-slider {
        height: 450px;
    }
    .slide-content h1 {
        font-size: 2.2rem;
    }
    .slide-features {
        display: none;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .service-cta-card {
        flex-direction: column;
    }
    .service-cta-card::before {
        display: none;
    }
    .service-cta-content {
        width: 100%;
        padding: 40px 24px;
        text-align: center;
        align-items: center;
    }
    .service-cta-image {
        position: relative;
        width: 100%;
        height: 250px;
    }
    .hide-mobile {
        display: none;
    }
    .service-cta-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    .cta-bar-contacts {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }
    .cta-bar .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    .btn-outline-cta {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .step-item {
        width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .cta-bar .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .gallery-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Home Page Custom Services Section */
.home-services-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.home-services-title-wrapper .title-bar {
    width: 6px;
    height: 35px;
    background-color: var(--accent-color);
    border-radius: 3px;
    flex-shrink: 0;
}

.home-services-title-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: stretch;
}

.home-service-box {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.home-service-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.home-service-box .icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.home-service-box .icon-wrapper svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-service-box h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.home-service-box p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Highlighted (Middle) Card style */
.home-service-box.highlighted {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    padding: 45px 20px; /* Slightly taller */
    margin-top: -15px; /* Stand out vertically */
    margin-bottom: -15px;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.home-service-box.highlighted .icon-wrapper svg {
    stroke: white;
}

.home-service-box.highlighted h3 {
    color: white;
}

.home-service-box.highlighted p {
    color: rgba(255, 255, 255, 0.95);
}

.home-service-box.highlighted .btn-dark-blue {
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 20px;
    margin-top: 20px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.home-service-box.highlighted .btn-dark-blue:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsive adjustment for 5-col grid */
@media (max-width: 1199px) {
    .home-services-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
    }
    .home-service-box {
        padding: 30px 15px;
    }
    .home-service-box.highlighted {
        padding: 40px 15px;
        margin-top: -10px;
        margin-bottom: -10px;
    }
}

@media (max-width: 991px) {
    .home-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .home-service-box.highlighted {
        margin-top: 0;
        margin-bottom: 0;
        grid-column: span 2; /* make highlighted card take full row */
    }
}

@media (max-width: 767px) {
    .home-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .home-service-box.highlighted {
        grid-column: span 1;
    }
}

/* Home Page Custom Products Section */
.home-products-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.home-products-title-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-products-title-left .title-bar {
    width: 6px;
    height: 35px;
    background-color: var(--accent-color);
    border-radius: 3px;
    flex-shrink: 0;
}

.home-products-title-left h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.home-products-btn-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: transparent;
}

.home-products-btn-all:hover {
    background-color: var(--accent-color);
    color: white;
}

.home-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.home-product-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border: 1px solid transparent;
}

.home-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.home-product-card .img-box {
    position: relative;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
    background-color: #f1f5f9;
}

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

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

.home-product-card .content-box {
    background-color: #f4f6f9;
    padding: 15px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.home-product-card .content-box h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
    line-height: 1.3;
}

.home-product-card .content-box p {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-secondary);
    margin: 0;
    line-height: 1.4;
}

/* About Page Custom Intro Section */
.about-intro-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.about-intro-title-wrapper .title-bar {
    width: 6px;
    height: 28px;
    background-color: var(--primary-color);
    border-radius: 3px;
    flex-shrink: 0;
}

.about-intro-title-wrapper h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.about-intro-divider {
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    margin-bottom: 20px;
    border-radius: 1.5px;
}

.about-intro-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.35;
    margin-bottom: 20px;
}

.about-intro-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-family: var(--font-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.about-feature-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.about-feature-card .icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.about-feature-card .icon-box svg {
    width: 40px;
    height: 40px;
    fill: var(--accent-color);
}

.about-feature-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.about-feature-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-secondary);
    margin: 0;
    line-height: 1.4;
}

/* Right Side: Unified HQ Card */
.about-hq-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.about-hq-card .img-wrapper {
    height: 250px;
    overflow: hidden;
}

.about-hq-card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-hq-card:hover .img-wrapper img {
    transform: scale(1.03);
}

.about-hq-info-box {
    background-color: var(--primary-color);
    color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.about-hq-info-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.about-hq-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-hq-info-item {
    display: grid;
    grid-template-columns: 24px 95px auto 1fr;
    gap: 8px;
    align-items: start;
    font-size: 0.9rem;
    line-height: 1.4;
}

.about-hq-info-item svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-color);
    margin-top: 2px;
}

.about-hq-info-item .label {
    font-weight: 600;
    color: white;
}

.about-hq-info-item .colon {
    color: white;
}

.about-hq-info-item .value {
    color: #cbd5e1;
    font-family: var(--font-secondary);
}

.about-hq-info-item.accented-value .value {
    color: white;
    font-weight: 600;
}

.about-hq-info-list .info-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 5px 0;
}

/* About Page Why Choose Us Stats Section */
.why-us-page-grid {
    grid-template-columns: 1fr 1.8fr;
    align-items: center;
}

.about-why-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-why-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-why-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
}

.about-why-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.about-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.about-stat-card {
    border-radius: 8px;
    padding: 35px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.about-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about-stat-card.card-navy {
    background-color: var(--primary-color);
    color: white;
}

.about-stat-card.card-gold {
    background-color: var(--accent-color);
    color: white;
}

.about-stat-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-stat-icon svg {
    width: 100%;
    height: 100%;
}

.about-stat-number {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
    color: white;
}

.about-stat-desc {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.45;
    margin: 0;
}

/* Contact Page Styles */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 20px;
}

@media (min-width: 992px) {
    .contact-layout {
        grid-template-columns: 420px 1fr;
        gap: 0;
    }
    
    .contact-form-wrapper {
        border-left: 1px solid var(--border-color);
        padding-left: 50px;
    }
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
}

/* TOP CARD: CONTACT INFO */
.contact-info-card {
    background-color: #f8fafc;
    border: 1px solid var(--border-color);
    border-bottom: none;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

.contact-info-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.contact-info-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 1.5px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.contact-info-item:first-child {
    padding-top: 0;
}

.contact-info-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info-item .c-icon-box {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-item .c-icon-box svg {
    width: 100%;
    height: 100%;
    fill: var(--primary-color);
}

.contact-info-item .c-text-box h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-info-item .c-text-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-secondary);
    line-height: 1.5;
}

.contact-info-item .c-text-box p a:hover {
    color: var(--accent-color);
}

/* BOTTOM CARD: FOLLOW US */
.contact-follow-card {
    background-color: var(--primary-color);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 30px;
    color: white;
    text-align: center;
}

.contact-follow-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.contact-follow-card .follow-subtitle {
    font-size: 0.8rem;
    color: #94a3b8;
    font-family: var(--font-secondary);
    margin-bottom: 20px;
}

.contact-follow-card .social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.contact-follow-card .social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.contact-follow-card .social-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.contact-follow-card .social-btn:hover {
    border-color: white;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* RIGHT COLUMN: FORM WRAPPER */
.contact-form-wrapper {
    background: transparent;
    border: none;
    box-shadow: none;
    padding-top: 10px;
}

.contact-form-wrapper h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-form-wrapper p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: var(--font-secondary);
    margin-bottom: 30px;
}

.contact-form-wrapper .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form-wrapper .form-group.full-width {
    grid-column: span 2;
}

/* Hide standard labels visually but keep in DOM */
.contact-form-wrapper .form-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-form-wrapper .form-control {
    width: 100%;
    padding: 12px 18px;
    border: 1.5px solid #cbd5e1;
    border-radius: 6px;
    background-color: var(--bg-white);
    font-size: 0.9rem;
    color: var(--text-color);
    font-family: var(--font-secondary);
    transition: var(--transition);
}

.contact-form-wrapper .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(213, 155, 32, 0.15);
}

.contact-form-wrapper textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-actions-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.form-privacy-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-secondary);
    margin-top: 10px;
    margin-bottom: 20px;
}

.form-privacy-note .lock-icon {
    width: 14px;
    height: 14px;
    fill: var(--text-muted);
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .home-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .home-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-features-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-vm-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 30px;
    }
    .about-vm-divider {
        display: none;
    }
    .about-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .contact-layout {
        gap: 40px;
    }
    .contact-form-wrapper {
        padding-top: 20px;
    }
}

@media (max-width: 767px) {
    .home-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .home-products-title-left h2 {
        font-size: 1.6rem;
    }
    .contact-form-wrapper .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .contact-form-wrapper .form-group.full-width {
        grid-column: span 1;
    }
    .form-actions-row {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    .btn-submit {
        width: 100%;
    }
    .form-privacy-note {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .about-features-row {
        grid-template-columns: 1fr;
    }
    .about-intro-heading {
        font-size: 1.5rem;
    }
    .about-hq-info-item {
        grid-template-columns: 20px 85px auto 1fr;
        font-size: 0.85rem;
    }
    .about-vm-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .about-vm-list li {
        text-align: left;
    }
    .about-stats-row {
        grid-template-columns: 1fr;
    }
    .about-why-title {
        font-size: 1.7rem;
        text-align: center;
    }
    .about-why-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .home-products-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   HOMEPAGE FULL-WIDTH WHY CHOOSE US & ABOUT STRIP
   ========================================================================== */
.home-about-strip {
    display: grid;
    grid-template-columns: 22% 1fr 22%;
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 40px 0;
    overflow: hidden;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    min-height: 280px;
    align-items: stretch;
}

/* Handshake Col Styling with Slanted Edge */
.strip-handshake-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.strip-handshake-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    z-index: 1;
}

.strip-handshake-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(0 0, 97.5% 0, 77.5% 100%, 0 100%);
    z-index: 2;
}

/* Building Col Styling */
.strip-building-col {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.strip-building-img {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

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

/* Content Wrapper */
.strip-content-wrapper {
    display: grid;
    grid-template-columns: 1.15fr auto 1fr;
    align-items: center;
    padding: 30px 40px;
    gap: 40px;
}

.strip-divider {
    width: 1px;
    height: 80%;
    background-color: #cbd5e1;
    align-self: center;
}

.strip-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

/* List details */
.strip-why-list, .strip-about-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.strip-why-list li, .strip-about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: #334155;
    line-height: 1.4;
}

.strip-about-list li {
    align-items: flex-start;
}

/* Check icon styling */
.chk-icon {
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chk-icon svg {
    width: 12px;
    height: 12px;
    fill: #ffffff;
    stroke: #ffffff;
    stroke-width: 0.5;
}

.chk-text {
    font-weight: 500;
}

/* About Section items */
.strip-company-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
}

.about-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.about-icon.location-icon {
    margin-top: 3px;
}

.about-text {
    font-family: var(--font-secondary);
    color: #334155;
}

.about-text a {
    color: inherit;
    transition: color 0.2s ease;
}

.about-text a:hover {
    color: var(--accent-color);
}

/* Responsive design for Why Choose Us & About Us strip */
@media (max-width: 1200px) {
    .strip-content-wrapper {
        padding: 20px 25px;
        gap: 20px;
    }
    .strip-why-list li, .strip-about-list li {
        font-size: 0.82rem;
        gap: 8px;
    }
    .strip-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 991px) {
    .home-about-strip {
        grid-template-columns: 1fr;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .strip-handshake-wrapper, .strip-building-col {
        display: none;
    }
    .strip-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }
    .strip-divider {
        display: none;
    }
}

/* FAQ Accordion Section (AEO Optimization) */
.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    user-select: none;
    list-style: none; /* Hide default triangle marker in Chrome/Firefox */
    transition: var(--transition);
}

.faq-question::-webkit-details-marker {
    display: none; /* Hide default triangle marker in Safari */
}

.faq-question:hover {
    background-color: var(--accent-light);
    color: var(--accent-hover);
}

.faq-icon {
    font-size: 1.4rem;
    line-height: 1;
    color: var(--accent-color);
    font-weight: 500;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg); /* Turns "+" into "x" or rotates marker */
}

.faq-answer {
    padding: 0 24px 20px;
    border-top: 1px dashed var(--border-color);
    background-color: #fafbfc;
}

.faq-answer p {
    font-family: var(--font-secondary);
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 15px;
}

/* ==========================================================================
   PRODUCT CATALOG LIST VIEW & ANIMATIONS
   ========================================================================== */
.product-grid {
    transition: opacity 0.15s ease-in-out;
}

.product-details-wrap {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.product-card.fade-in {
    animation: fadeIn 0.4s ease forwards;
}

@media (min-width: 768px) {
    .product-grid.list-view {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .product-grid.list-view .product-card {
        flex-direction: row;
        align-items: stretch;
        min-height: 180px;
    }
    
    .product-grid.list-view .product-card .product-img-box {
        width: 240px;
        height: 180px;
        flex-shrink: 0;
    }
    
    .product-grid.list-view .product-card .product-content {
        flex-direction: row;
        align-items: center;
        gap: 24px;
        padding: 20px 25px;
        flex-grow: 1;
    }
    
    .product-grid.list-view .product-card .product-content .product-details-wrap {
        flex-grow: 1;
    }
    
    .product-grid.list-view .product-card .product-content .product-desc {
        -webkit-line-clamp: 3;
        margin-bottom: 0;
    }
    
    .product-grid.list-view .product-card .product-content .product-action {
        flex-shrink: 0;
        margin-top: 0;
        width: 140px;
    }
}

@media (max-width: 767px) {
    .product-grid.list-view {
        grid-template-columns: 1fr !important;
    }
}

.page-item.disabled {
    border-color: #cbd5e1 !important;
    color: #94a3b8 !important;
    cursor: not-allowed !important;
    background: transparent !important;
    pointer-events: none;
}




