/**
 * ENTMEX Manufacturing - Unified Styles
 * Estilos completos para todo el sitio
 */

/* ==========================================
   VARIABLES Y RESET
   ========================================== */

:root {
    --color-primary: #0056b3;
    --color-primary-dark: #003d82;
    --color-secondary: #333333;
    --color-text: #666666;
    --color-light: #f5f5f5;
    --color-white: #ffffff;
    --color-border: #e0e0e0;
    --color-success: #28a745;
    --color-error: #dc3545;
    --font-main: 'Roboto', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--color-secondary);
    line-height: 1.6;
    background: var(--color-white);
}

/* ==========================================
   HEADER
   ========================================== */

.header {
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 11px;
}

.logo-text {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--color-secondary);
}

.logo-text span {
    color: var(--color-primary);
}

/* ==========================================
   NAVIGATION
   ========================================== */

.nav {
    background: var(--color-secondary);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li a {
    display: block;
    padding: 15px 30px;
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: background 0.3s;
}

.nav-list li a:hover,
.nav-list li a.active {
    background: var(--color-primary);
}

/* ==========================================
   BREADCRUMB
   ========================================== */

.breadcrumb {
    background: var(--color-light);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    margin-top: 130px;
}

.breadcrumb-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text);
}

.breadcrumb-content a {
    color: var(--color-text);
    text-decoration: none;
}

.breadcrumb-content a:hover {
    color: var(--color-primary);
}

/* ==========================================
   PAGE HEADER
   ========================================== */

.page-header {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--color-white);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   HERO SECTION (Home)
   ========================================== */

.hero {
    margin-top: 130px;
    height: 600px;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #1a365d 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero::after {
    content: '';
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,86,179,0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    color: var(--color-white);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: #60a5fa;
}

.hero-text p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-box {
    width: 400px;
    height: 350px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
}

.hero-image-box::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 12px;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-family: var(--font-main);
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-secondary);
    border-color: var(--color-white);
}

/* ==========================================
   STATS BAR
   ========================================== */

.stats-bar {
    background: var(--color-white);
    padding: 40px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.stats-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid var(--color-border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   INTRO SECTION (Home)
   ========================================== */

.intro-section {
    padding: 80px 0;
    background: var(--color-light);
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-image {
    position: relative;
}

.intro-image-box {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    position: relative;
    z-index: 1;
}

.intro-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: var(--color-primary);
    border-radius: 8px;
    z-index: 0;
}

.intro-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 25px;
    line-height: 1.3;
}

.intro-text h2 span {
    color: var(--color-primary);
}

.intro-text p {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.9;
    margin-bottom: 20px;
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 18px;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-secondary);
}

/* ==========================================
   SERVICES SECTION (Home)
   ========================================== */

.services-section {
    padding: 80px 0;
    background: var(--color-white);
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: var(--color-text);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--color-light);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.service-card:hover {
    background: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 25px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.7;
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #1a1a1a 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 35px;
}

/* ==========================================
   MAIN CONTENT (General)
   ========================================== */

.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* ==========================================
   COMPANY INTRO (About)
   ========================================== */

.company-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.company-intro-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 25px;
    line-height: 1.3;
}

.company-intro-text h2 span {
    color: var(--color-primary);
}

.company-intro-text p {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.9;
    margin-bottom: 20px;
}

.company-intro-image {
    position: relative;
}

.company-intro-image-box {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    position: relative;
    z-index: 1;
}

.company-intro-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: var(--color-primary);
    border-radius: 8px;
    z-index: 0;
}

/* ==========================================
   LIVING SPACES SECTION (About)
   ========================================== */

.living-spaces-section {
    background: var(--color-light);
    padding: 60px;
    border-radius: 8px;
    margin-bottom: 80px;
}

.ls-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.ls-image-box {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    position: sticky;
    top: 150px;
}

.ls-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.ls-text h2 span {
    color: var(--color-primary);
}

.ls-text > p {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 15px;
}

.ls-text > p em {
    color: var(--color-primary);
    font-style: italic;
}

.ls-history,
.ls-locations {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.ls-history h3,
.ls-locations h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.ls-history p,
.ls-locations p {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.8;
}

.ls-text .btn {
    margin-top: 25px;
}

/* ==========================================
   DATA TABLE
   ========================================== */

.data-section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--color-primary);
    display: inline-block;
}

.company-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--color-primary);
    display: inline-block;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
}

.data-table th {
    background: var(--color-light);
    font-weight: 600;
    color: var(--color-secondary);
    width: 280px;
}

.data-table td {
    color: var(--color-text);
}

.data-table td a {
    color: var(--color-primary);
    text-decoration: none;
}

.data-table td a:hover {
    text-decoration: underline;
}

.sites-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sites-list li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.sites-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

/* ==========================================
   STATS SECTION (About)
   ========================================== */

.stats-section {
    background: var(--color-light);
    padding: 60px 0;
    margin: 0 -20px 80px;
    padding-left: 20px;
    padding-right: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: var(--color-white);
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* ==========================================
   TIMELINE (About)
   ========================================== */

.timeline-section {
    margin-bottom: 80px;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-primary);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--color-white);
    border: 4px solid var(--color-primary);
    border-radius: 50%;
}

.timeline-year {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.timeline-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.timeline-text {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.7;
}

/* ==========================================
   VALUES SECTION (About)
   ========================================== */

.values-section {
    margin-bottom: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--color-light);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.value-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 25px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.7;
}

/* ==========================================
   PRODUCTS SECTION
   ========================================== */

.products-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.products-intro h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.products-intro p {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.8;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.product-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-image {
    height: 250px;
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,86,179,0.1) 0%, rgba(0,61,130,0.1) 100%);
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.product-content p {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
}

.product-features li {
    font-size: 13px;
    color: var(--color-text);
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: bold;
}

/* ==========================================
   FEATURED PRODUCT (Products)
   ========================================== */

.featured-section {
    background: var(--color-light);
    padding: 60px;
    border-radius: 8px;
    margin-bottom: 80px;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-image {
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
}

.featured-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.featured-text p {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 25px;
}

.featured-list {
    list-style: none;
    margin-bottom: 30px;
}

.featured-list li {
    font-size: 14px;
    color: var(--color-text);
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.featured-list li span {
    width: 30px;
    height: 30px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

/* ==========================================
   PROCESS SECTION (Products)
   ========================================== */

.process-section {
    margin-bottom: 80px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process-card::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--color-primary);
}

.process-card:last-child::after {
    display: none;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
}

.process-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.process-card p {
    font-size: 13px;
    color: var(--color-text);
    line-height: 1.6;
}

/* ==========================================
   QUALITY SECTION (Products)
   ========================================== */

.quality-section {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #1a1a1a 100%);
    padding: 60px;
    border-radius: 8px;
    margin-bottom: 80px;
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quality-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}

.quality-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 25px;
}

.quality-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.quality-stat {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.quality-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 5px;
}

.quality-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-section {
    padding: 80px 0;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 40px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    width: 55px;
    height: 55px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 22px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 5px;
}

.info-content p {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
}

.info-content a {
    color: var(--color-primary);
    text-decoration: none;
}

.info-content a:hover {
    text-decoration: underline;
}

.contact-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 30px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

/* ==========================================
   CONTACT FORM
   ========================================== */

.contact-form-container {
    background: var(--color-light);
    padding: 40px;
    border-radius: 8px;
}

.contact-form-container h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.form-group label .required {
    color: var(--color-error);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-main);
    font-size: 14px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background: var(--color-white);
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.form-control.error {
    border-color: var(--color-error);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit {
    width: 100%;
    padding: 16px 30px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-primary);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--color-primary-dark);
}

.btn-submit:disabled {
    background: var(--color-text);
    cursor: not-allowed;
}

.btn-submit .spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--color-white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
}

.btn-submit.loading .spinner {
    display: block;
}

.btn-submit.loading .btn-text {
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-message {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: none;
    font-size: 14px;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid var(--color-success);
    color: var(--color-success);
    display: block;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid var(--color-error);
    color: var(--color-error);
    display: block;
}

.error-text {
    font-size: 12px;
    color: var(--color-error);
    margin-top: 5px;
    display: none;
}

/* ==========================================
   MAP / LOCATIONS SECTION (Contact)
   ========================================== */

.map-section {
    padding: 0 0 80px;
}

.map-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.map-header {
    text-align: center;
    margin-bottom: 40px;
}

.map-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.map-header p {
    font-size: 15px;
    color: var(--color-text);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.location-card {
    background: var(--color-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}

.location-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-card p {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.7;
}

.location-card .area {
    margin-top: 10px;
    font-weight: 500;
    color: var(--color-primary);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--color-secondary);
    color: var(--color-white);
    margin-top: 80px;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-brand h3 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-white);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--color-white);
}

.footer-contact-info p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-info span {
    font-size: 16px;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.footer-bottom a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--color-white);
}

/* ==========================================
   RESPONSIVE - TABLET (max-width: 992px)
   ========================================== */

@media (max-width: 992px) {
    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        display: flex;
    }

    .hero-image-box {
        width: 100%;
        max-width: 350px;
        height: 280px;
    }

    .hero-image-box::before {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Stats */
    .stats-content,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        border-right: none;
    }

    /* Intro */
    .intro-content {
        grid-template-columns: 1fr;
    }

    .intro-image {
        order: -1;
    }

    .intro-image::before {
        display: none;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Company Intro */
    .company-intro {
        grid-template-columns: 1fr;
    }

    .company-intro-image {
        order: -1;
    }

    .company-intro-image-box {
        background: none;
    }

    .company-intro-image::before {
        display: none;
    }

    /* Living Spaces */
    .ls-content {
        grid-template-columns: 1fr;
    }

    .ls-image-box {
        position: static;
        height: 250px;
        background: none;
    }

    /* Values */
    .values-grid {
        grid-template-columns: 1fr;
    }

    /* Products */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Featured */
    .featured-content {
        grid-template-columns: 1fr;
    }

    .featured-image {
        order: -1;
        height: 300px;
    }

    /* Process */
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-card::after {
        display: none;
    }

    /* Quality */
    .quality-content {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ========================================== */

@media (max-width: 768px) {
    /* Header */
    .header-top {
        flex-direction: column;
        gap: 15px;
    }

    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-list li a {
        padding: 12px 15px;
        font-size: 13px;
    }

    /* Breadcrumb */
    .breadcrumb {
        margin-top: 160px;
    }

    /* Page Header */
    .page-header h1 {
        font-size: 32px;
    }

    /* Hero */
    .hero {
        height: auto;
        padding: 60px 0;
        margin-top: 160px;
    }

    .hero-content {
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-image-box {
        width: 100%;
        max-width: 300px;
        height: 220px;
        margin-top: 20px;
    }

    /* Stats */
    .stats-content,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* Intro */
    .intro-text h2,
    .company-intro-text h2 {
        font-size: 26px;
    }

    .intro-image-box {
        height: 280px;
    }

    .intro-features {
        grid-template-columns: 1fr;
    }

    /* Sections */
    .section-header h2,
    .section-title {
        font-size: 28px;
    }

    .living-spaces-section,
    .featured-section,
    .quality-section {
        padding: 30px;
    }

    .ls-text h2 {
        font-size: 24px;
    }

    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    /* Quality Stats */
    .quality-stats {
        grid-template-columns: 1fr;
    }

    /* Contact Form */
    .contact-form-container {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Data Table */
    .data-table th {
        width: 140px;
    }

    /* CTA */
    .cta-content h2 {
        font-size: 28px;
    }
}