* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    padding: 1.2rem 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.logo .site-logo {
    max-height: 120px;
    width: auto;
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    position: relative;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

nav a.active {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #3d6bb3 100%);
    color: white;
    padding: 7rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 2.8rem;
    font-weight: 400;
    margin: 1rem 0;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    line-height: 1.4;
}

.hero-forensics {
    background-image:
        linear-gradient(135deg, rgba(10, 22, 45, 0.85) 0%, rgba(30, 60, 114, 0.85) 60%, rgba(42, 82, 152, 0.9) 100%),
        url('../images/home/hero-main.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem 5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.hero-copy h2 {
    font-size: 2.4rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.hero-copy p {
    color: #e2eafc;
    margin-bottom: 1.2rem;
}

.hero-pill {
    display: inline-flex;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    color: #cdd9ff;
    line-height: 1.7;
}

.hero-highlights li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.6rem;
}

.hero-highlights li::before {
    content: '';
    position: absolute;
    top: 0.65rem;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6ce1ff;
}

.hero-data-panel {
    background: rgba(9, 18, 36, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    display: grid;
    gap: 1.5rem;
    backdrop-filter: blur(6px);
}

.data-card {
    padding: 1rem 0 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.data-card:last-child {
    border-bottom: none;
}

.data-card .label {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9fb7ff;
}

.data-card strong {
    display: block;
    font-size: 2rem;
    color: #fff;
    margin: 0.6rem 0;
}

.data-card p {
    color: #cdd9ff;
    font-size: 0.95rem;
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
}

.content-section.grey-bg {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

.content-section h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    border-radius: 2px;
}

.content-section h3 {
    font-size: 1.5rem;
    color: #2a5298;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.8;
    font-weight: 500;
}

.image-placeholder {
    margin: 2rem 0;
    text-align: center;
}

.image-placeholder img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-radius: 4px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.footer-content {
    text-align: center;
    margin-bottom: 1.5rem;
}

.footer-content p {
    margin: 0.8rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-content strong {
    color: #fff;
    font-weight: 600;
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Text Content */
.text-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.9;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.text-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #555;
}

.text-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1e3c72;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Brands Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.brand-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(30, 60, 114, 0.2);
}

.brand-card h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.brand-link {
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.brand-link:hover h3 {
    color: #2a5298;
    transform: translateX(5px);
}

.brand-card p {
    color: #555;
}

/* Partners Section */
.partners-section {
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.8rem;
    color: #2a5298;
    text-align: center;
    margin: 3rem 0 2rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 1rem;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    border-radius: 2px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.partner-logo-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid #e9ecef;
    text-decoration: none;
    display: block;
}

.partner-logo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(30, 60, 114, 0.2);
    border-color: #2a5298;
}

.partner-logo-placeholder {
    width: 100%;
    height: 150px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid #dee2e6;
    transition: all 0.3s;
    padding: 1rem;
}

.partner-logo-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.08));
}

.partner-logo-card:hover .partner-logo-placeholder {
    background: #ffffff;
    border-color: #2a5298;
}

.partner-description {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Product Shop Grid (Shopping Card Style) */
.products-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.products-sidebar {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.products-sidebar h3 {
    color: #1e3c72;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: left;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-group-label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a9ab5;
    font-weight: 600;
    margin-top: 1.2rem;
    margin-bottom: 0.3rem;
}

.category-link {
    display: block;
    padding: 0.8rem 1rem;
    color: #555;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.category-link:hover {
    background: #f8f9fa;
    color: #1e3c72;
    padding-left: 1.3rem;
}

.category-link.active {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    font-weight: 500;
}

.products-content {
    min-width: 0;
}

.products-content h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 2rem;
    text-align: left;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.products-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    border-radius: 2px;
}

.products-grid-shop {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.products-intro {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    color: #555;
    line-height: 1.8;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.product-shop-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #e9ecef;
}

.product-shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.15);
    border-color: #2a5298;
}

.product-shop-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e9ecef;
}

.product-shop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-shop-card:hover .product-shop-image img {
    transform: scale(1.05);
}

.product-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
    background: #fff;
}

.product-shop-card h3 {
    font-size: 1.1rem;
    color: #1e3c72;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.product-shop-card:hover h3 {
    color: #2a5298;
}

.product-card-body p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.product-brand-badge {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2a5298;
    font-weight: 600;
}

.product-source-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e3c72;
    margin-top: auto;
}

.product-shop-card:hover .product-source-link {
    color: #2a5298;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #e9ecef;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(30, 60, 114, 0.2);
}

.product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #1e3c72;
    font-size: 1.2rem;
    font-weight: 600;
}

.product-card p {
    padding: 0 1.5rem 1.5rem;
    color: #555;
    line-height: 1.6;
}

/* Home practice areas */
.practice-areas .focus-grid {
    margin-top: 3rem;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.focus-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    border: 1px solid #e6ebf5;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.focus-card h3 {
    color: #1e3c72;
    font-size: 1.25rem;
}

.focus-card p {
    color: #546179;
}

.focus-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    color: #556;
}

.focus-card li {
    padding-left: 1.2rem;
    margin-bottom: 0.4rem;
    position: relative;
}

.focus-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1e3c72;
}

/* Split panel */
.split-panel {
    background: linear-gradient(180deg, #fdfdfd 0%, #eef2fb 100%);
}

.split-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.split-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 6px 30px rgba(30, 60, 114, 0.1);
    position: relative;
}

.split-card .eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a9ab5;
    margin-bottom: 0.8rem;
}

.split-card h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.bullet-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.bullet-columns h4 {
    color: #1e3c72;
    margin-bottom: 0.8rem;
}

.bullet-columns ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.bullet-columns li {
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
    position: relative;
    color: #545c6e;
}

.bullet-columns li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2a5298;
}

.panel-photo {
    border-radius: 16px;
    min-height: 360px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1.5rem;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.panel-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.panel-photo .overlay-note {
    position: relative;
    z-index: 1;
}

.overlay-note {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.7;
}

/* Pipeline */
.pipeline-section {
    background: linear-gradient(180deg, #f8f9fb 0%, #e5ecff 100%);
}

.pipeline-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.pipeline-step {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border-top: 4px solid #2a5298;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.step-index {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: #8a9ab5;
}

.pipeline-step h3 {
    color: #1e3c72;
    margin: 0.8rem 0;
}

.pipeline-step p {
    color: #4b5366;
}

/* Credentials */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.credential-card {
    background: #0f1d3d;
    color: #f2f6ff;
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(15, 29, 61, 0.35);
}

.credential-card h3 {
    color: #8dc6ff;
    margin-bottom: 0.8rem;
}

.partner-band {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    border: 1px solid #dde3f2;
    border-radius: 12px;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.partner-band span {
    font-weight: 600;
    color: #1e3c72;
}

.partner-band img {
    max-height: 50px;
    width: auto;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.08));
}

.toast-message {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    background: rgba(15, 29, 61, 0.95);
    color: #f2f6ff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(15, 29, 61, 0.35);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999;
    font-weight: 500;
}

.toast-message.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-product {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.hero-product h2 {
    font-size: 2.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 3rem 0;
}

.product-detail-image {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-detail-info {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.product-breadcrumb {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.product-breadcrumb a {
    color: #2a5298;
    text-decoration: none;
}

.product-breadcrumb a:hover {
    text-decoration: underline;
}

.product-detail-info h1 {
    font-size: 2.2rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.product-description h3 {
    color: #1e3c72;
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-description p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.product-description ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.product-description li {
    color: #555;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.product-description li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2a5298;
    font-weight: bold;
}

.product-contact-btn {
    margin-top: 2.5rem;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 60, 114, 0.4);
}

.related-products {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 2px solid #e9ecef;
}

.related-products h2 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 2rem;
    font-weight: 600;
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #2a5298;
    transition: all 0.3s;
}

.service-item:hover {
    box-shadow: 0 8px 30px rgba(30, 60, 114, 0.15);
    transform: translateX(5px);
}

.service-item h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.service-item h3::before {
    content: '✓ ';
    color: #2a5298;
    font-weight: bold;
    margin-right: 0.5rem;
}

.service-item p {
    line-height: 1.8;
    color: #555;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.client-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid #e9ecef;
}

.client-card:hover {
    border-color: #2a5298;
    box-shadow: 0 8px 30px rgba(30, 60, 114, 0.15);
}

.client-logo {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    margin: 0 auto 1.2rem;
    border: 2px solid rgba(42, 82, 152, 0.15);
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.client-card h3 {
    color: #1e3c72;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.client-card p {
    color: #666;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contact Page */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info h3,
.contact-form h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.info-item {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2a5298;
}

.info-item strong {
    display: block;
    margin-bottom: 0.8rem;
    color: #1e3c72;
    font-size: 1.1rem;
    font-weight: 600;
}

.info-item p {
    line-height: 1.8;
    color: #555;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

.submit-btn {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 60, 114, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .header-top .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .content-section h3 {
        font-size: 1.1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .products-grid,
    .products-grid-shop,
    .brands-grid,
    .clients-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .products-layout {
        grid-template-columns: 1fr;
    }
    
    .products-sidebar {
        position: static;
    }
    
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-copy h2 {
        font-size: 2rem;
        text-align: center;
    }

    .hero-copy p,
    .hero-highlights {
        text-align: left;
    }

    .hero-actions {
        justify-content: center;
    }

    .partner-band {
        flex-direction: column;
        text-align: center;
    }
}
