/* -----------------------------------------------------------
   STYLE.CSS - VALENOR DISTRIBUTION
   Unified stylesheet for the entire website
   ----------------------------------------------------------- */

:root {
    --gold: #d4af37;
    --dark: #141414;
    --dark-bg: #141414;
    --light-dark: #1e1e1e;
    --card-bg: #1e1e1e;
    --border: #333;
    --gray: #d0d0d0;
    --text-gray: #d0d0d0;
    --glass: rgba(255, 255, 255, 0.06);
}

body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: var(--dark-bg);
    font-family: 'Inter', sans-serif;
    color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* -----------------------------------------------------------
   NAVBAR (HEADER)
   ----------------------------------------------------------- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 5%;
    background: #fff;
    color: #000;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
}

.category {
    display: flex;
    align-items: center;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 1px;
}

.category img {
    height: 50px;
    width: 50px;
    margin-right: 15px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
}

.menu {
    display: flex;
    align-items: center;
}

.menu a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 12px;
    margin: 0 12px;
    text-transform: uppercase;
    transition: 0.3s;
}

.menu a:hover {
    color: var(--gold);
}

.menu a:not(.btn-amazon) {
    position: relative;
}

.menu a:not(.btn-amazon)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.menu a:not(.btn-amazon):hover::after,
.menu a.active:not(.btn-amazon)::after {
    width: 100%;
}

.menu a.btn-amazon {
    background: #FF9900;
    color: #000;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 900;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #FF9900;
}

.menu a.btn-amazon:hover {
    background: #fff;
    color: #FF9900;
}

.hamburger {
    display: none;
    font-size: 24px;
    color: #000;
    cursor: pointer;
}

.spacer {
    height: 120px;
}

/* -----------------------------------------------------------
   COMMON STORY & SECTIONS
   ----------------------------------------------------------- */
.story-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 60px 8%;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.story-text h1 {
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 30px;
}

.story-text h1 span {
    color: var(--gold);
}

.story-text p {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 400;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 35px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
}

.section-title .line {
    width: 60px;
    height: 4px;
    background: var(--gold);
    margin: 20px auto;
}

.categories-portfolio {
    padding: 80px 8%;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.category-card {
    background: var(--light-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.3s;
}

.category-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.category-card img {
    height: 150px;
    max-width: 100%;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: 0.4s;
    margin-bottom: 25px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
}

.category-card:hover img {
    transform: scale(1.08);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.category-card h3 {
    color: var(--gold);
    font-size: 22px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.category-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
}

.cta-final {
    padding: 120px 8%;
    background: var(--dark-bg);
    text-align: center;
    border-top: 1px solid var(--border);
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: var(--gold);
    color: #000;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(184, 146, 78, 0.2);
}

.cta-button:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(184, 146, 78, 0.4);
}

/* -----------------------------------------------------------
   FOOTER
   ----------------------------------------------------------- */
.site-footer {
    background-color: var(--light-dark);
    border-top: 1px solid var(--gold);
    padding: 80px 5% 40px 5%;
    margin-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h4 {
    color: var(--gold);
    font-size: 15px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 16px;
}

.site-footer .footer-column ul li a,
.site-footer .footer-column ul li a:visited {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.footer-column ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--gold);
}

.footer-column ul li a:hover::after {
    width: 100%;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 16px 0;
    color: #b0b0b0;
}

.footer-column .highlight {
    color: #aaa;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: #b0b0b0;
    font-size: 15px;

    a {
        color: #b0b0b0;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    a:hover {
        color: var(--gold);
    }
}

.contact-item i {
    color: var(--gold);
    width: 25px;
    font-size: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 60px;
    border-top: 1px solid #1a1a1a;
    font-size: 11px;
    color: #444;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.6;
}

/* ===========================================================
   PAGE SPECIFIC: HOME (index.html)
   =========================================================== */
.page-home .hero-container {
    width: 100%;
    height: 100vh;
    background-color: #000;
    padding-top: 66px;
    box-sizing: border-box;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.page-home .hero-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('nuevofondo.jpg') center/cover no-repeat;
    filter: blur(8px) brightness(0.5);
    z-index: 1;
    transform: scale(1.1);
}

.page-home .hero-container::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to left, rgba(214, 175, 55, 0.2), transparent);
    z-index: 3;
    pointer-events: none;
}

.page-home .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: kineticHero 20s infinite alternate ease-in-out;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8));
}

@keyframes kineticHero {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

.page-home .ghost-btn {
    position: absolute;
    top: 65%;
    left: 50%;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gold);
    color: #000;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    opacity: 0;
    transform: translateX(-50%);
    transition: opacity 0.6s ease-in-out;
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-home .hero-container:hover .ghost-btn {
    opacity: 1;
}

.page-home .ghost-btn:hover {
    background: #fff;
    color: #000;
    transform: translateX(-50%) scale(1.1);
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
}

.page-home .trust-metrics {
    background: linear-gradient(to right, #141414, #1c1c1c, #141414);
    padding: 40px 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    border-top: 1px solid var(--gold);
    position: relative;
    z-index: 10;
    margin-top: -100px;
}

.page-home .metric-card {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-right: 5px solid var(--gold);
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.page-home .metric-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px) scale(1.02);
    background: rgba(184, 146, 78, 0.15);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.page-home .metric-card i {
    color: var(--gold);
    font-size: 35px;
    margin-bottom: 15px;
    transition: 0.5s;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.page-home .metric-card:hover i {
    transform: scale(1.2) rotate(5deg);
}

.page-home .metric-card h3 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 900;
}

.page-home .metric-card p {
    font-size: 14px;
    color: #eee;
    line-height: 1.6;
    font-weight: 400;
}

.page-home .home-intro {
    padding: 120px 10%;
    background: #000;
    text-align: center;
}

.page-home .home-intro h2 {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 30px;
    background: linear-gradient(to bottom, #fff, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-home .home-intro p {
    color: #d0d0d0;
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
    font-weight: 400;
}

.page-home .catalog-carousel {
    background: var(--light-dark);
    padding: 60px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.page-home .carousel-track {
    display: flex;
    width: calc(250px * 12);
    animation: scroll 35s linear infinite;
}

.page-home .slide {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-home .slide a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-home .slide img {
    height: 65px;
    opacity: 0.85;
    transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
}

.page-home .slide a:hover img {
    opacity: 1;
    filter: brightness(1.1);
    transform: scale(1.15);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 6));
    }
}

.page-home .partner-section {
    padding: 160px 5%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('almacen.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--gold);
}

.page-home .partner-content {
    max-width: 650px;
    background: rgba(0, 0, 0, 0.8);
    padding: 60px;
    border-left: 5px solid var(--gold);
    backdrop-filter: blur(15px);
}

.page-home .partner-content h2 {
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

/* ===========================================================
   PAGE SPECIFIC: CATALOG (catalog.html)
   =========================================================== */
.page-catalog .catalog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.page-catalog .catalog-hero {
    padding: 40px 0 20px;
    position: relative;
}

.page-catalog .hero-decorative-bg {
    position: absolute;
    top: -20px;
    right: 5%;
    opacity: 0.1;
    pointer-events: none;
}

.page-catalog .catalog-hero-text {
    max-width: 600px;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 50px;
    font-weight: 300;
}

.page-catalog .features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.page-catalog .feature-item {
    display: flex;
    flex-direction: column;
}

.page-catalog .feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.page-catalog .feature-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
}

.page-catalog .feature-title {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-catalog .feature-text {
    color: #d0d0d0;
    font-size: 13px;
    line-height: 1.6;
}

.page-catalog .catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.page-catalog .cat-card {
    background: var(--light-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.page-catalog .cat-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.page-catalog .cat-img-wrapper {
    width: 100%;
    height: 180px;
    background: #ebebeb;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-catalog .cat-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-catalog .cat-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.page-catalog .cat-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.page-catalog .cat-icon {
    width: 34px;
    height: 34px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
}

.page-catalog .cat-title {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.page-catalog .cat-desc {
    color: #d0d0d0;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-catalog .cat-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.page-catalog .cat-link:hover {
    color: #fff;
    gap: 10px;
}

.page-catalog .bottom-cta {
    background: var(--light-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 30px 40px;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-catalog .bottom-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.page-catalog .bottom-cta-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.page-catalog .bottom-cta-text h3 {
    color: #fff;
    font-size: 16px;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.page-catalog .bottom-cta-text p {
    color: #d0d0d0;
    font-size: 13px;
    margin: 0;
}

.page-catalog .bottom-cta-btn {
    padding: 12px 24px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.page-catalog .bottom-cta-btn:hover {
    background: var(--gold);
    color: #000;
}

/* ===========================================================
   PAGE SPECIFIC: ABOUT (about.html)
   =========================================================== */
.page-about .story-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    padding: 60px 8%;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.page-about .story-image {
    position: relative;
}

.page-about .story-image img {
    width: 100%;
    border-radius: 4px;
    filter: grayscale(20%);
    transition: 0.5s;
    border: 1px solid rgba(184, 146, 78, 0.3);
}

.page-about .story-image::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    z-index: -1;
    border-radius: 4px;
}

.page-about .philosophy-banner {
    padding: 80px 8%;
    background: linear-gradient(165deg, var(--light-dark) 0%, #0f0f0f 100%);
    border-top: 1px solid var(--border);
}

.page-about .philosophy-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.page-about .philosophy-title {
    text-align: center;
    font-size: 35px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    margin-bottom: 50px;
}

.page-about .philosophy-title span {
    color: var(--gold);
}

.page-about .philosophy-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.page-about .philosophy-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 40px 35px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.page-about .philosophy-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
    border-radius: 10px 0 0 10px;
}

.page-about .philosophy-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.page-about .philosophy-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.page-about .philosophy-icon i {
    font-size: 20px;
    color: var(--gold);
}

.page-about .philosophy-card h3 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 18px;
    font-weight: 700;
}

.page-about .philosophy-card p {
    font-size: 16px;
    color: #b0b0b0;
    line-height: 1.8;
    font-style: italic;
}

.page-about .philosophy-signature {
    margin-top: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    color: var(--gold);
    font-style: normal;
}

.page-about .family-pillars {
    padding: 80px 8%;
    background: var(--dark-bg);
    text-align: center;
    border-top: 1px solid var(--border);
}

.page-about .pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-about .pillar-item i {
    color: var(--gold);
    font-size: 30px;
    margin-bottom: 20px;
    display: block;
}

.page-about .pillar-item h4 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.page-about .pillar-item p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
}

.page-about .process-section {
    padding: 100px 8%;
    max-width: 1100px;
    margin: 0 auto;
}

.page-about .process-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.page-about .process-item::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 50px;
    width: 2px;
    height: 100%;
    background: #222;
}

.page-about .process-item:last-child::before {
    display: none;
}

.page-about .number {
    min-width: 55px;
    height: 55px;
    background: var(--gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
}

.page-about .process-content h3 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.page-about .process-content p {
    font-size: 17px;
    color: #d0d0d0;
    line-height: 1.7;
    font-weight: 400;
}

/* ===========================================================
   PAGE SPECIFIC: CONTACT (contact.html)
   =========================================================== */
.page-contact .page-header {
    margin-top: 68px;
    padding: 60px 5% 30px;
    text-align: center;
    background: linear-gradient(to bottom, #111, var(--dark-bg));
    border-bottom: 1px solid var(--border);
}

.page-contact .page-header h1 {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 36px;
    margin: 0 0 10px 0;
}

.page-contact .page-header p {
    font-size: 18px;
    color: #d0d0d0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.page-contact .contact-wrapper {
    padding: 60px 5%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.page-contact .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    max-width: 1200px;
    width: 100%;
}

.page-contact .contact-form-container {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-contact .contact-form-container h2 {
    margin-top: 0;
    font-size: 22px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 10px;
    display: inline-block;
}

.page-contact .form-group {
    margin-bottom: 20px;
}

.page-contact .form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.page-contact .form-group input,
.page-contact .form-group textarea {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    box-sizing: border-box;
    transition: 0.3s;
}

.page-contact .form-group input:focus,
.page-contact .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(184, 146, 78, 0.2);
}

.page-contact .submit-btn {
    background: var(--gold);
    color: #000;
    border: none;
    padding: 16px 30px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page-contact .submit-btn:hover {
    background: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.page-contact .contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-contact .info-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #222;
    transition: 0.3s;
}

.page-contact .info-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.page-contact .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.page-contact .info-item:last-child {
    margin-bottom: 0;
}

.page-contact .info-item i {
    color: var(--gold);
    font-size: 22px;
    width: 40px;
    margin-top: 3px;
}

.page-contact .info-text h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #fff;
}

.page-contact .info-text p,
.page-contact .info-text a {
    margin: 0;
    color: #aaa;
    font-size: 15px;
    line-height: 1.6;
    text-decoration: none;
    transition: 0.3s;
}

.page-contact .info-text a:hover {
    color: var(--gold);
}

.page-contact .business-hours .day {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #222;
    padding: 8px 0;
    color: #aaa;
    font-size: 14px;
}

.page-contact .business-hours .day:last-child {
    border-bottom: none;
}

.page-contact .business-hours .day span:last-child {
    font-weight: bold;
    color: #fff;
}

.page-contact .map-container {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #222;
    height: 250px;
}

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

/* ===========================================================
   PAGE SPECIFIC: LEGAL, PRIVACY, TERMS (legal.html, privacy.html, terms.html)
   =========================================================== */
.page-legal .policy-container,
.page-privacy .policy-container,
.page-terms .policy-container,
.page-shipping .policy-container {
    padding: 60px 8%;
    max-width: 1000px;
    margin: 0 auto;
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 16px;
}

.page-legal .policy-container h1,
.page-privacy .policy-container h1,
.page-terms .policy-container h1,
.page-shipping .policy-container h1 {
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 2px;
}

.page-legal .policy-container h2,
.page-privacy .policy-container h2,
.page-terms .policy-container h2,
.page-shipping .policy-container h2 {
    color: #fff;
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 22px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

.page-legal .policy-container p,
.page-privacy .policy-container p,
.page-terms .policy-container p,
.page-shipping .policy-container p {
    margin-bottom: 20px;
}

.page-legal .policy-container ul,
.page-privacy .policy-container ul,
.page-terms .policy-container ul,
.page-shipping .policy-container ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-legal .policy-container li,
.page-privacy .policy-container li,
.page-terms .policy-container li,
.page-shipping .policy-container li {
    margin-bottom: 10px;
}

/* ===========================================================
   MEDIA QUERIES (RESPONSIVE STYLES)
   =========================================================== */

@media (max-width: 1024px) {

    /* Catalog Specific */
    .page-catalog .features-row,
    .page-catalog .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-catalog .bottom-cta {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .page-catalog .bottom-cta-left {
        flex-direction: column;
    }
}

@media (max-width: 900px) {

    /* Base Elements */
    .footer-container {
        grid-template-columns: 1fr;
    }

    .hamburger {
        display: block;
    }

    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        text-align: center;
        border-bottom: 2px solid var(--gold);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .menu.active {
        display: flex;
    }

    .menu a {
        margin: 15px 0;
        padding: 10px;
        font-size: 14px;
    }

    /* Common layout pages */
    .story-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Home Page Specific */
    .page-home .trust-metrics {
        margin-top: -50px;
        padding: 30px 5%;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .page-home .metric-card {
        padding: 20px 10px;
    }

    .page-home .metric-card h3 {
        font-size: 11px;
    }

    .page-home .metric-card p {
        font-size: 12px;
    }

    .page-home .hero-container {
        height: 55vh;
        display: flex;
        padding: 0;
    }

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

    .page-home .hero-container::before {
        filter: blur(4px) brightness(0.6);
    }

    .page-home .ghost-btn {
        position: fixed;
        top: auto;
        left: auto;
        bottom: 15px;
        right: 15px;
        width: 60px;
        height: 60px;
        font-size: 8px;
        opacity: 1;
        transform: none;
        z-index: 1000;
    }

    .page-home .hero-container:hover .ghost-btn {
        transform: none;
    }

    .page-home .ghost-btn:hover {
        transform: scale(1.1) !important;
    }

    /* About Page Specific */
    .page-about .story-container,
    .page-about .philosophy-cards {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-about .story-image::after {
        display: none;
    }

    .page-about .process-item {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .page-about .process-item::before {
        display: none;
    }

    /* Contact Page Specific */
    .page-contact .contact-grid {
        grid-template-columns: 1fr;
    }

    .page-contact .contact-wrapper {
        padding: 40px 5%;
    }

    .page-contact .contact-form-container {
        padding: 25px;
    }

    .page-contact .info-card {
        padding: 20px;
    }

    .page-contact .info-text {
        width: calc(100% - 40px);
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .page-contact .info-text a {
        display: inline-block;
        word-break: break-all;
    }

    .page-contact .business-hours .day {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 12px 0;
    }

    .page-contact .business-hours .day span:last-child {
        color: var(--gold);
    }
}

@media (max-width: 600px) {

    /* Catalog Specific */
    .page-catalog .features-row,
    .page-catalog .catalog-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================================================
   SERVICES SECTION - Our Solutions styling (merged from services.css)
   =========================================================== */
.services-section {
    padding: 80px 8%;
    background: var(--light-dark);
    border-top: 1px solid var(--border);
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-header h2 {
    font-size: 35px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    color: var(--gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.service-card i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 15px;
    transition: transform 0.4s;
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 22px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--gray);
}