:root {
    --primary: #0d6efd;
    --dark: #0f172a;
    --muted: #64748b;
    --soft: #f8fafc;
    --border: #e5e7eb;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--dark);
    background: #ffffff;
}

.site-logo {
    max-height: 52px;
    max-width: 190px;
    object-fit: contain;
}

.brand-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
}

.navbar .nav-link {
    font-weight: 600;
    color: #334155;
    padding: 10px 12px;
}

.navbar .nav-link:hover {
    color: var(--primary);
}

.front-hero {
    background:
        radial-gradient(circle at top left, rgba(13, 110, 253, 0.25), transparent 32%),
        linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
    padding: 100px 0;
}

.front-hero h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.1;
}

.front-hero p {
    color: #cbd5e1;
    font-size: 18px;
    max-width: 700px;
    margin: 18px auto 0;
}

.front-section {
    padding: 70px 0;
}

.front-card {
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    height: 100%;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    transition: 0.2s ease;
}

.front-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
}

.page-banner {
    background:
        linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)),
        var(--banner-image);
    background-size: cover;
    background-position: center;
    padding: 95px 0;
    color: #ffffff;
}

.page-banner h1 {
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 900;
}

.page-content {
    padding: 70px 0;
}

.page-content .content-box {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.site-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 0;
}

.site-footer h5 {
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 18px;
}

.site-footer p {
    color: #94a3b8;
}

.footer-contact div {
    margin-bottom: 8px;
}

.footer-contact i {
    color: #60a5fa;
    margin-right: 8px;
}

.footer-links {
    padding-left: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
    transition: 0.2s ease;
}

.social-links a:hover {
    background: var(--primary);
}

.footer-bottom {
    margin-top: 45px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    color: #94a3b8;
}

@media (max-width: 767px) {
    .front-hero {
        padding: 70px 0;
    }

    .page-banner {
        padding: 70px 0;
    }

    .page-content .content-box {
        padding: 24px;
    }
}
.dynamic-hero,
.dynamic-slide {
    min-height: 620px;
    background:
        radial-gradient(circle at top left, rgba(13, 110, 253, 0.25), transparent 35%),
        linear-gradient(135deg, #0f172a, #1e293b);
    background-size: cover;
    background-position: center;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.dynamic-hero-content {
    max-width: 780px;
    text-align: center;
    margin: auto;
}

.dynamic-hero-content h1 {
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.05;
}

.dynamic-hero-content p {
    color: #cbd5e1;
    font-size: 19px;
    margin-top: 20px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-radius: 999px;
    padding: 8px 16px;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.section-badge.light {
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
}

.dynamic-section {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 48px;
}

.section-heading h2,
.about-section h2,
.cta-section h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    color: #0f172a;
}

.section-heading p,
.about-section p {
    color: #64748b;
    font-size: 17px;
}

.dynamic-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.04);
    transition: 0.2s ease;
}

.dynamic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.dynamic-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
    font-size: 34px;
}

.dynamic-card-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 20px;
}

.dynamic-card h4 {
    font-weight: 800;
    color: #0f172a;
}

.dynamic-card p {
    color: #64748b;
}

.about-img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.about-placeholder {
    min-height: 340px;
    display: grid;
    place-items: center;
    border-radius: 28px;
    background: linear-gradient(135deg, #e0f2fe, #eef2ff);
    color: #0d6efd;
    font-size: 90px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.04);
}

.testimonial-card img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
}

.counter-section {
    padding: 70px 0;
    background: #0f172a;
    color: #ffffff;
}

.counter-box h2 {
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
}

.counter-box p {
    color: #cbd5e1;
}

.gallery-logo-card {
    min-height: 135px;
    display: grid;
    place-items: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.04);
}

.gallery-logo-card img {
    max-width: 100%;
    max-height: 95px;
    object-fit: contain;
}

.faq-accordion {
    max-width: 850px;
    margin: auto;
}

.faq-accordion .accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 14px;
}

.faq-accordion .accordion-button {
    font-weight: 800;
}

.video-box {
    max-width: 900px;
    margin: auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

.cta-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #ffffff;
    background-size: cover;
    background-position: center;
}

.cta-section h2 {
    color: #ffffff;
}

.cta-section p {
    color: #e0e7ff;
    max-width: 760px;
    margin: 16px auto 26px;
    font-size: 18px;
}

.custom-html-section {
    background: #ffffff;
}

@media (max-width: 767px) {
    .dynamic-hero,
    .dynamic-slide {
        min-height: 520px;
        padding: 70px 0;
    }

    .dynamic-section {
        padding: 60px 0;
    }

    .dynamic-card {
        padding: 24px;
    }
}
.blog-page-section,
.blog-details-section {
    padding: 80px 0;
    background: #f8fafc;
}

.blog-search-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.blog-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.04);
    transition: 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.blog-card-img {
    height: 230px;
    display: block;
    background: #e2e8f0;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-placeholder {
    height: 100%;
    display: grid;
    place-items: center;
    color: #0d6efd;
    font-size: 64px;
    background: linear-gradient(135deg, #e0f2fe, #eef2ff);
}

.blog-card-body {
    padding: 24px;
}

.blog-meta,
.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #64748b;
    font-size: 13px;
    margin-bottom: 12px;
}

.blog-meta i,
.blog-detail-meta i {
    color: #0d6efd;
}

.blog-card h3 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
}

.blog-card h3 a {
    color: #0f172a;
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: #0d6efd;
}

.blog-card p {
    color: #64748b;
}

.blog-sidebar {
    position: sticky;
    top: 95px;
}

.sidebar-widget {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.04);
}

.sidebar-widget h5 {
    font-weight: 800;
    margin-bottom: 18px;
}

.blog-category-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.blog-category-list li {
    margin-bottom: 8px;
}

.blog-category-list a {
    display: block;
    padding: 10px 14px;
    background: #f8fafc;
    border-radius: 14px;
    color: #334155;
    text-decoration: none;
    font-weight: 600;
}

.blog-category-list a:hover,
.blog-category-list a.active {
    background: #0d6efd;
    color: #ffffff;
}

.recent-post-link {
    display: block;
    padding: 12px 0;
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid #e5e7eb;
}

.recent-post-link:last-child {
    border-bottom: 0;
}

.recent-post-link:hover {
    color: #0d6efd;
}

.recent-post-link small {
    display: block;
    color: #64748b;
    margin-top: 4px;
    font-weight: 400;
}

.empty-blog-box {
    background: #ffffff;
    border: 1px dashed #cbd5e1;
    border-radius: 24px;
    padding: 70px 20px;
    text-align: center;
    color: #64748b;
}

.empty-blog-box i {
    font-size: 70px;
    color: #cbd5e1;
    margin-bottom: 16px;
}

.blog-details-banner {
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-details-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.68);
}

.blog-details-banner .container {
    position: relative;
    z-index: 1;
}

.blog-details-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.04);
}

.blog-details-main-img {
    width: 100%;
    max-height: 430px;
    object-fit: cover;
    border-radius: 22px;
    margin-bottom: 28px;
}

.blog-content {
    font-size: 17px;
    line-height: 1.8;
    color: #334155;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4 {
    color: #0f172a;
    font-weight: 800;
    margin-top: 24px;
}

.blog-content img {
    max-width: 100%;
    border-radius: 18px;
}

.post-info-list div {
    padding: 9px 0;
    border-bottom: 1px solid #e5e7eb;
    color: #475569;
}

.post-info-list div:last-child {
    border-bottom: 0;
}

@media (max-width: 991px) {
    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .blog-page-section,
    .blog-details-section {
        padding: 60px 0;
    }

    .blog-card-img {
        height: 200px;
    }

    .blog-details-card {
        padding: 20px;
    }
}
.service-page-section,
.service-details-section {
    padding: 80px 0;
    background: #f8fafc;
}

.service-search-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.service-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.04);
    transition: 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.service-card-top {
    height: 230px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #e0f2fe, #eef2ff);
}

.service-card-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-icon {
    width: 90px;
    height: 90px;
    display: grid;
    place-items: center;
    border-radius: 28px;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    font-size: 44px;
}

.service-card-body {
    padding: 24px;
}

.service-meta,
.service-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #64748b;
    font-size: 13px;
    margin-bottom: 12px;
}

.service-meta i,
.service-detail-meta i {
    color: #0d6efd;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
}

.service-card h3 a {
    color: #0f172a;
    text-decoration: none;
}

.service-card h3 a:hover {
    color: #0d6efd;
}

.service-card p {
    color: #64748b;
}

.service-sidebar {
    position: sticky;
    top: 95px;
}

.service-widget {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.04);
}

.service-widget h5 {
    font-weight: 800;
    margin-bottom: 18px;
}

.service-category-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.service-category-list li {
    margin-bottom: 8px;
}

.service-category-list a {
    display: block;
    padding: 10px 14px;
    background: #f8fafc;
    border-radius: 14px;
    color: #334155;
    text-decoration: none;
    font-weight: 600;
}

.service-category-list a:hover,
.service-category-list a.active {
    background: #0d6efd;
    color: #ffffff;
}

.recent-service-link {
    display: block;
    padding: 12px 0;
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid #e5e7eb;
}

.recent-service-link:last-child {
    border-bottom: 0;
}

.recent-service-link:hover {
    color: #0d6efd;
}

.recent-service-link small {
    display: block;
    color: #64748b;
    margin-top: 4px;
    font-weight: 400;
}

.empty-service-box {
    background: #ffffff;
    border: 1px dashed #cbd5e1;
    border-radius: 24px;
    padding: 70px 20px;
    text-align: center;
    color: #64748b;
}

.empty-service-box i {
    font-size: 70px;
    color: #cbd5e1;
    margin-bottom: 16px;
}

.service-details-banner {
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-details-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.68);
}

.service-details-banner .container {
    position: relative;
    z-index: 1;
}

.service-details-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.04);
}

.service-details-main-img {
    width: 100%;
    max-height: 430px;
    object-fit: cover;
    border-radius: 22px;
    margin-bottom: 28px;
}

.service-details-icon {
    width: 120px;
    height: 120px;
    display: grid;
    place-items: center;
    border-radius: 34px;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    font-size: 58px;
    margin-bottom: 28px;
}

.service-content {
    font-size: 17px;
    line-height: 1.8;
    color: #334155;
}

.service-content h1,
.service-content h2,
.service-content h3,
.service-content h4 {
    color: #0f172a;
    font-weight: 800;
    margin-top: 24px;
}

.service-feature-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 24px;
}

.service-feature-box h4 {
    font-weight: 800;
}

.service-feature-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    font-weight: 600;
}

.service-feature-item i {
    color: #198754;
}

.service-info-list div {
    padding: 9px 0;
    border-bottom: 1px solid #e5e7eb;
    color: #475569;
}

.service-info-list div:last-child {
    border-bottom: 0;
}

@media (max-width: 991px) {
    .service-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .service-page-section,
    .service-details-section {
        padding: 60px 0;
    }

    .service-card-top {
        height: 200px;
    }

    .service-details-card {
        padding: 20px;
    }
}
.product-page-section,
.product-details-section {
    padding: 80px 0;
    background: #f8fafc;
}

.product-search-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.product-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.04);
    transition: 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.product-card-img {
    height: 240px;
    display: block;
    position: relative;
    background: #e2e8f0;
    text-decoration: none;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-placeholder {
    height: 100%;
    display: grid;
    place-items: center;
    color: #0d6efd;
    font-size: 64px;
    background: linear-gradient(135deg, #e0f2fe, #eef2ff);
}

.product-type-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #0d6efd;
    color: #ffffff;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 800;
}

.product-card-body {
    padding: 24px;
}

.product-meta,
.product-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #64748b;
    font-size: 13px;
    margin-bottom: 12px;
}

.product-meta i,
.product-detail-meta i {
    color: #0d6efd;
}

.product-card h3 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
}

.product-card h3 a {
    color: #0f172a;
    text-decoration: none;
}

.product-card h3 a:hover {
    color: #0d6efd;
}

.product-price,
.product-detail-price {
    color: #0d6efd;
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 12px;
}

.product-card p {
    color: #64748b;
}

.product-sidebar {
    position: sticky;
    top: 95px;
}

.product-widget {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.04);
}

.product-widget h5 {
    font-weight: 800;
    margin-bottom: 18px;
}

.product-category-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.product-category-list li {
    margin-bottom: 8px;
}

.product-category-list a {
    display: block;
    padding: 10px 14px;
    background: #f8fafc;
    border-radius: 14px;
    color: #334155;
    text-decoration: none;
    font-weight: 600;
}

.product-category-list a:hover,
.product-category-list a.active {
    background: #0d6efd;
    color: #ffffff;
}

.recent-product-link {
    display: block;
    padding: 12px 0;
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid #e5e7eb;
}

.recent-product-link:last-child {
    border-bottom: 0;
}

.recent-product-link:hover {
    color: #0d6efd;
}

.recent-product-link small {
    display: block;
    color: #64748b;
    margin-top: 4px;
    font-weight: 400;
}

.empty-product-box {
    background: #ffffff;
    border: 1px dashed #cbd5e1;
    border-radius: 24px;
    padding: 70px 20px;
    text-align: center;
    color: #64748b;
}

.empty-product-box i {
    font-size: 70px;
    color: #cbd5e1;
    margin-bottom: 16px;
}

.product-details-banner {
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-details-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.68);
}

.product-details-banner .container {
    position: relative;
    z-index: 1;
}

.product-details-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.04);
}

.product-details-main-img {
    width: 100%;
    max-height: 430px;
    object-fit: cover;
    border-radius: 22px;
    margin-bottom: 28px;
}

.product-content {
    font-size: 17px;
    line-height: 1.8;
    color: #334155;
}

.product-content h1,
.product-content h2,
.product-content h3,
.product-content h4 {
    color: #0f172a;
    font-weight: 800;
    margin-top: 24px;
}

.product-feature-box,
.product-gallery-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 24px;
}

.product-feature-box h4,
.product-gallery-box h4 {
    font-weight: 800;
}

.product-feature-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    font-weight: 600;
}

.product-feature-item i {
    color: #198754;
}

.product-gallery-item {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.product-gallery-item img {
    width: 100%;
    height: 145px;
    object-fit: cover;
    transition: 0.2s ease;
}

.product-gallery-item:hover img {
    transform: scale(1.05);
}

.product-info-list div {
    padding: 9px 0;
    border-bottom: 1px solid #e5e7eb;
    color: #475569;
}

.product-info-list div:last-child {
    border-bottom: 0;
}

@media (max-width: 991px) {
    .product-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .product-page-section,
    .product-details-section {
        padding: 60px 0;
    }

    .product-card-img {
        height: 210px;
    }

    .product-details-card {
        padding: 20px;
    }
}
.contact-page-section {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-form-card,
.contact-info-card,
.contact-map-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.04);
}

.contact-form-card h3,
.contact-info-card h3 {
    font-weight: 900;
    color: #0f172a;
}

.contact-form-card .form-label {
    font-weight: 700;
    color: #334155;
}

.contact-form-card .form-control {
    border-radius: 14px;
    border-color: #dbe3ef;
}

.contact-form-card .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.18rem rgba(13, 110, 253, 0.12);
}

.contact-hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.contact-info-item:last-of-type {
    border-bottom: 0;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(13, 110, 253, 0.09);
    color: #0d6efd;
    font-size: 22px;
}

.contact-info-item strong {
    display: block;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 4px;
}

.contact-info-item span {
    color: #64748b;
    word-break: break-word;
}

.contact-social {
    display: flex;
    gap: 10px;
}

.contact-social a {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #0d6efd;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    transition: 0.2s ease;
}

.contact-social a:hover {
    background: #0f172a;
}

.contact-map-card h5 {
    font-weight: 800;
    margin-bottom: 16px;
}

.map-placeholder {
    min-height: 220px;
    border-radius: 20px;
    background:
        radial-gradient(circle at top left, rgba(13, 110, 253, 0.22), transparent 35%),
        linear-gradient(135deg, #e0f2fe, #eef2ff);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 24px;
    color: #334155;
}

.map-placeholder i {
    font-size: 58px;
    color: #0d6efd;
    display: block;
    margin-bottom: 10px;
}

.map-placeholder span {
    font-weight: 700;
}

@media (max-width: 767px) {
    .contact-page-section {
        padding: 60px 0;
    }

    .contact-form-card,
    .contact-info-card,
    .contact-map-card {
        padding: 22px;
    }
}