/* Force center for product section titles */
.products .section-title,
.products h2,
.products h3 {
    text-align: center !important;
    width: 100%;
    display: block;
}
/* ===================================
   MODERN ELEGANT DESIGN - DEBANDERA
   =================================== */

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

html {
    margin: 0;
    padding: 0;
    height: 100%;
}

:root {
    --primary: #c41e3a;
    --primary-dark: #9a1629;
    --secondary: #2c1810;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-light: #e5e5e5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    font-weight: 600;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================
   HEADER
   ================== */
.header {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    padding: 16px 0;
}

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

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

.logo-mark {
    width: 200px;
    height: 120px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 16px;
}

.logo-name {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.logo-tagline {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

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

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

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.btn-shop {
    padding: 12px 28px;
    background: #ffffff;
    color: var(--primary);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-shop:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ==================
   HERO SECTION
   ================== */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(44, 24, 16, 0.92) 0%,
        rgba(66, 3, 3, 0.85) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    padding: 100px 24px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: start;
}

/* Hero Main Content */
.hero-main {
    max-width: 680px;
}

.hero-title {
    font-size: 64px;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 36px;
    padding-left: 20px;
    border-left: 4px solid rgba(255, 255, 255, 0.5);
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.8;
}

.hero-description p {
    margin-bottom: 20px;
}

.hero-description p:last-child {
    margin-bottom: 0;
}

.hero-description strong {
    font-weight: 700;
    color: #FFE4B5;
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: var(--transition);
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateX(4px);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #ffffff;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 4px;
}

.feature-text strong {
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    display: block;
}

.feature-text span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    line-height: 1.5;
}

/* Hero Aside Card */
.hero-aside {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    min-width: 320px;
    min-height: 340px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
}

.hero-card-header {
    padding: 32px 28px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    text-align: center;
}

.hero-card-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.hero-card-header p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 400;
}

.hero-card-footer {
    padding: 0 28px 28px;
    text-align: center;
}

.btn-card-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: var(--primary);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
    margin-top: 12px;
}

.btn-card-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-aside {
        min-width: 0;
        min-height: 0;
        position: static;
        margin: 0 auto;
        width: 100%;
        justify-content: center;
    }
    .hero-card {
        max-width: 400px;
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .hero-aside {
        min-width: 0;
        min-height: 0;
        position: static;
        margin: 0 auto;
        width: 100%;
        justify-content: center;
    }
    .hero-card {
        max-width: 100%;
        min-height: 0;
    }
}

/* ==================
   QUALITY SECTION
   ================== */
.quality {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #f5f5f5 100%);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}
        justify-content: start;
.quality-card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-sm);
}



.quality-badge {
    width: 340px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 58, 0.08);
    border-radius: 16px;
    margin-bottom: 32px;
    transition: var(--transition);
    margin-left: auto;
    margin-right: auto;
}

.quality-badge:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: var(--primary);
}

.quality-badge img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.quality-title {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
    text-align: center;
}

.quality-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
}

/* ==================
   STORY SECTIONS
   ================== */
.story {
    padding: 80px 0;
    background: var(--bg-white);
}

.story + .story {
    padding-top: 40px;
}

.story-alt {
    background: var(--bg-light);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    align-items: start;
}

.story-grid.reverse .story-content {
    order: 2;
}

.story-grid.reverse .story-media {
    order: 1;
}

@media (max-width: 768px) {
    .story-grid.reverse .story-content {
        order: 1;
    }

    .story-grid.reverse .story-media {
        order: 2;
    }
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    justify-content: flex-start;
}

.story-title {
    font-size: 32px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.25;
}

.story-text {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
}

.story-media {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.story-media img {
    width: 100%;
    max-width: 520px;
    height: auto;
    max-height: 280px;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

/* ==================
   FEATURED SECTION
   ================== */
.featured {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(196, 30, 58, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 16px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
    text-align: center;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

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

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

.article-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.article-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    z-index: 2;
}

.article-content {
    padding: 28px;
    flex: 1;
}

.article-title {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.article-excerpt {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.article-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    padding: 0 28px 28px 28px;
}

.article-link svg {
    transition: transform 0.3s ease;
}

.article-link:hover {
    color: var(--primary-dark);
}

.article-link:hover svg {
    transform: translateX(4px);
}

/* ==================
   FOOTER
   ================== */
.footer {
    background: var(--primary);
    color: #ffffff;
    padding: 72px 0 32px;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

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

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-family: 'Poppins', sans-serif;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

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

.footer-company {
    font-weight: 600;
    font-size: 15px;
}

.footer-address {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.footer-phone {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-top: 4px;
    transition: var(--transition);
}

.footer-phone:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-email {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

.footer-email:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-map {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.footer-map:hover {
    color: #ffffff;
}

.footer-cta-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-footer {
    display: inline-block;
    padding: 14px 28px;
    background: #ffffff;
    color: var(--primary);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-footer:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

/* ==================
   CTA NAVIGATION
   ================== */
.cta-navigation {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #f9f9f9 100%);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.cta-card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--primary);
}

.cta-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-title {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.cta-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.cta-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
    padding: 8px 0;
}

.cta-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.featured-cta {
    text-align: center;
    margin-top: 48px;
}

/* ==================
   LOCATION SECTION
   ================== */
.location {
    padding: 60px 0;
    background: var(--bg-white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.location-title {
    font-size: 44px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.location-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px;
    background: rgba(196, 30, 58, 0.08);
    border-radius: 8px;
    margin: 16px 0 8px 0;
}

.location-detail {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.location-detail a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.location-detail a:hover {
    color: var(--primary-dark);
}

.location-map-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    display: inline-block;
    padding: 8px 0;
    margin-top: 4px;
}

.location-map-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.location-media {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==================
   PAGE HERO
   ================== */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(66, 3, 3, 0.75) 0%,
        rgba(66, 3, 3, 0.6) 100%);
    z-index: 2;
}

.page-hero .container {
    position: relative;
    z-index: 3;
    padding: 80px 24px;
}

.page-hero-content {
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
}

.page-hero-title {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1px;
}

.page-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.page-hero-small {
    min-height: 280px;
}

.page-hero-small .container {
    padding: 50px 24px;
}

.page-hero-small .page-hero-title {
    font-size: 40px;
    margin-bottom: 0;
}

/* ==================
   PRODUCTS SECTION
   ================== */
.products {
    padding: 80px 0;
    background: var(--bg-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
    justify-items: center;
    min-height: 320px;
}
/* Always show 3 columns in products grid, even if empty */
.products-grid:empty::before,
.products-grid:only-child::before {
    content: '';
    display: block;
    min-height: 320px;
}

.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
        max-width: 340px;
        width: 100%;
}

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

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--bg-light);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-placeholder svg {
    width: 100%;
    height: 100%;
}

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

.product-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-align: center;
}

.product-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.product-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.product-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.products-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f5f5f5 0%, var(--bg-light) 100%);
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.products-cta-title {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.products-cta-text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* ==================
   VALUES SECTION
   ================== */
.values-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.value-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    background: rgba(196, 30, 58, 0.05);
    border-radius: 6px;
}

.value-icon {
    color: var(--primary);
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.value-text {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.value-image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-image-placeholder svg {
    width: 100%;
    height: 100%;
}

/* ==================
   RESPONSIVE
   ================== */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-aside {
        position: static;
        max-width: 560px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        padding-left: 16px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-title {
        font-size: 36px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .header-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    .products-grid {
           grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    }
    
    .logo {
        flex-direction: column;
        gap: 12px;
    }
    
    .logo-mark {
        width: 56px;
        height: 56px;
    }
    
    .logo-name {
        font-size: 24px;
    }
    
    .hero {
        min-height: auto;
    }
    
    .hero .container {
        padding: 60px 24px;
    }
    
    .hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        padding-left: 12px;
        border-left-width: 3px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-features {
        gap: 16px;
    }
    
    .hero-feature {
        padding: 16px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .feature-text strong {
        font-size: 15px;
    }
    
    .feature-text span {
        font-size: 13px;
    }
    
    .hero-card-header {
        padding: 24px 20px 20px;
    }
    
    .hero-card-header h3 {
        font-size: 20px;
    }
    
    .hero-card-header p {
        font-size: 14px;
    }
    
    .hero-card-body {
        padding: 20px;
    }
    
    .hero-card-list li {
        font-size: 14px;
    }
    
    .hero-card-footer {
        padding: 0 20px 20px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .featured {
        padding: 60px 0;
    }
    
    .location {
        padding: 40px 0;
    }
    
    .location-title {
        font-size: 28px;
    }
    
    .location-text {
        font-size: 15px;
    }
    
    .location-details {
        padding: 20px;
        gap: 10px;
    }
    
    .location-detail {
        font-size: 14px;
    }
    
    .footer {
        padding: 48px 0 24px;
    }
}

/* Certifications */
.certifications {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    max-width: 720px;
}

.cert-logo {
    flex: 1;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: #ffffff;
    border: 2px solid rgba(196, 30, 58, 0.2);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.cert-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cert-logo-large {
    transform: scale(2);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.about-title {
    font-size: 36px;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.about-text {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--primary);
    font-weight: 600;
}

.about-cta {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

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

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

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

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.contact-info-card {
    padding: 24px;
    background: #fafafa;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    text-align: center;
}

.info-card-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 12px;
}

.info-card-text {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.8;
}

.info-card-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.info-card-text a:hover {
    color: var(--primary-dark);
}

.contact-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.contact-section-card {
    padding: 40px;
    background: #fafafa;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: var(--transition);
}

.contact-section-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.contact-section-header {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-light);
}

.contact-section-title {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-section-subtitle {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-section-text {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 24px;
}

.contact-section-details {
    margin-bottom: 24px;
    padding: 16px;
    background: white;
    border-radius: 8px;
}

.detail-item {
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.btn-contact {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-contact:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.company-info {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid var(--border-light);
}

.company-info-title {
    font-size: 24px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.company-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.company-info-item {
}

.company-info-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 8px;
}

.company-info-value {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.8;
}

.company-info-value a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.company-info-value a:hover {
    color: var(--primary-dark);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item-icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 12px;
}

.contact-item-content {
    flex: 1;
}

.contact-item-title {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-item-text {
    color: var(--text-medium);
    line-height: 1.8;
}

.contact-item-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-item-text a:hover {
    color: var(--primary-dark);
}

.contact-categories {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-title {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.category-card {
    padding: 28px;
    background: #fafafa;
    border: 2px solid var(--border-light);
    border-radius: 16px;
    transition: var(--transition);
}

.category-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.category-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.category-title {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.category-text {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.6;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 14px;
}

.category-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.contact-additional {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid var(--border-light);
}

.additional-title {
    font-size: 24px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

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

.additional-item-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 8px;
}

.additional-item-text {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.8;
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.page-hero-title {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-hero-description {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.95;
    max-width: 600px;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .products-grid {
           grid-template-columns: 1fr;
    }
    .additional-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .page-hero {
        height: 300px;
    }

    .page-hero-title {
        font-size: 36px;
    }

    .page-hero-description {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .contact-section {
        padding: 50px 0;
    }

    .contact-grid {
        gap: 30px;
        margin-bottom: 50px;
    }

    .contact-item {
        gap: 16px;
    }

    .contact-item-icon {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .contact-item-title {
        font-size: 16px;
    }

    .category-card {
        padding: 20px;
    }

    .additional-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .page-hero {
        height: 250px;
    }

    .page-hero-title {
        font-size: 28px;
    }

    .page-hero-description {
        font-size: 14px;
    }

    .about {
        padding: 50px 0;
    }

    .about-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .about-text {
        font-size: 14px;
    }

    .about-cta {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-sections {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .company-info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .contact {
        padding: 50px 0;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }

    .contact-info-card {
        padding: 16px;
    }

    .contact-section-card {
        padding: 24px;
    }

    .contact-section-title {
        font-size: 20px;
    }

    .contact-section-text {
        font-size: 14px;
    }

    .company-info {
        margin-top: 40px;
        padding-top: 40px;
    }

    .company-info-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .company-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .btn-contact {
        display: block;
        text-align: center;
    }
}
