/* ================================
   Silver Gate Trade LLC
   Premium Editorial Design System
   ================================ */

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

:root {
    --primary: #234f7b;
    --primary: #234f7b;
    --secondary: #cac8cf;
    --dark: #1a1a1a;
    --light: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e8e8e8;
    --gray-700: #404040;
    --accent: #d4af37;
    --font-display: 'Playfair Display', serif;
    --font-body: 'IBM Plex Sans', sans-serif;
	
	/* Spacing */
    --container-max: 1200px;
}

.text-primary {
    color: var(--primary) !important;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--dark); background: var(--light); overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--primary); }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
.container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0rem 2rem;
}

/* ================================
   Diagonal Navigation - Unique
   ================================ */
.diagonal-nav {
	position: fixed; 
	top: 0; 
	left: 0; 
	width: 100%; 
	background: var(--light); 
	z-index: 1000; 
	box-shadow: 0 2px 20px rgba(0,0,0,0.05); 
}
.nav-wrapper {
	display: flex; 
	justify-content: space-between; 
	align-items: center; 
	padding: 1.2rem 3rem; 
	position: relative; 
}
.nav-accent {
	position: absolute; 
	bottom: 0; 
	left: 0; 
	width: 100%; 
	height: 4px; 
	background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%); 
	clip-path: polygon(0 0, 100% 0, 98% 100%, 0% 100%); 
}

.brand-container {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.brand-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--primary), #1a3a5c);
	color: var(--light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 1.4rem;
	clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
	letter-spacing: -1px;
}
.brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}
.brand-name {
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--primary);
}
.brand-subtitle {
	font-family: var(--font-body);
	font-size: 0.7rem;
	font-weight: 400;
	color: var(--gray-700);
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-top: 2px;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 3rem;
	align-items: center;
}
.nav-item {
	font-weight: 500;
	color: var(--dark);
	padding: 0.5rem 0;
	position: relative;
	font-size: 0.95rem;
	letter-spacing: 0.5px;
}
.nav-item::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: width 0.3s ease;
}
.nav-item:hover::before, .nav-item.active::before { width: 100%; }
.nav-item-cta {
	background: var(--primary); 
	color: var(--light); 
	padding: 0.7rem 1.8rem; 
	clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%); 
}
.nav-item-cta:hover {
	background: var(--dark); 
	transform: translateY(-2px); 
}
.nav-item-cta::before {
	display: none; 
}

.nav-toggle {
	display: none; 
	flex-direction: column; 
	gap: 5px; 
	background: none; 
	border: none; 
	cursor: pointer; 
}
.toggle-line {
	width: 28px; 
	height: 2px; 
	background: var(--primary); 
	transition: all 0.3s ease; 
}

/* ============================== 
 Logo 
 ============================== */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 80px;          /* adjust as needed */
    /* width: 200px; */
    display: block;
}

.logo-bottom {
    display: flex;
    align-items: center;
    text-decoration: none;
	background-color: var(--light);
	/* background: linear-gradient( */
        /* to right, */
        /* var(--white, #ffffff) 0%, */
		/* var(--white, #ffffff) 75%, */
        /* transparent 75%, */
        /* transparent 100% */
    /* ); */
}

.logo-bottom img {
    height: 60px;          /* adjust as needed */
    width: 135px;
    display: block;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -4px;
}

/* ================================
   Hero Magazine Style
   ================================ */
   
@media (max-width: 640px) {
.container {
        padding: 0 1.5rem;
    }
}
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}
.hero {
	padding: 9rem 0 2rem;
	background-image:
	  linear-gradient(
      to right,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.5) 40%,
      rgba(0, 0, 0, 0) 70%
    ),
    url('../images/hero/home.jpg');
	position: relative;
	overflow: hidden;
}
.hero-content {
    /* Set width to 50% of the container */
    max-width: 50%;
    /* Changed from center to left alignment */
    text-align: left;
    margin: 0;
	/* background-color: var(--gray-900); */
	display: flex;
    flex-direction: column;
    justify-content: center;
    /* min-height: 100vh; */
	/* padding: 10rem 0; */
}
.hero-container {
    position: relative;
    z-index: 1;
	margin-left: 0;
	padding-left: 10;
}
.hero-magazine {
	min-height: 100vh;
	padding: 10rem 0 5rem;
	background: url('../images/hero/home.jpg');
	/* background: linear-gradient(135deg, var(--gray-50) 0%, var(--light) 100%);  */
}
.hero-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 5rem;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 3rem;
}
.hero-label {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 2rem;
}
/* .hero-content { */
	/* margin-left: 2rem; */
/* } */
.hero-title {
	/* font-size: clamp(3rem, 7vw, 6rem);  */
	/* margin-bottom: 2rem; */
	font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--light);
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}
.title-line {
	display: block; 
}
.title-accent {
	color: var(--accent); 
	font-style: italic; 
}
.hero-description {
	font-size: 1.2rem; 
	color: var(--gray-700); 
	margin-bottom: 3rem; 
	line-height: 1.8; 
	max-width: 550px; 
}
.hero-actions {
	display: flex; 
	gap: 1.5rem; 
	flex-wrap: wrap; 
}

.hero-image-container { position: relative; }
.hero-image-container img {
	width: 100%; 
	height: 100%; 
	object-fit: cover; 
	/* clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);  */
}
.image-accent-frame { position: absolute; top: 20px; right: 20px; width: 100%; height: 100%; border: 3px solid var(--primary); clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); z-index: -1; }

.hero-stats { 
	display: grid; 
	grid-template-columns: repeat(3, 1fr); 
	gap: 1.5rem; 
	margin-top: 3rem; 
}
.stat-box { 
	background: var(--light); 
	padding: 1.5rem; 
	text-align: center; 
	box-shadow: 0 5px 20px rgba(0,0,0,0.08); 
	clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%); 
}
.stat-number { 
	font-family: var(--font-display); 
	font-size: 2.5rem; 
	font-weight: 900; 
	color: var(--primary); 
}
.stat-label { 
	font-size: 0.85rem; 
	color: var(--gray-700); 
	text-transform: uppercase; 
	letter-spacing: 1px; 
}

.hero-scroll-indicator { 
	text-align: center; 
	margin-top: 5rem; 
}
.hero-scroll-indicator span { 
	font-size: 0.8rem; 
	color: var(--gray-700); 
	text-transform: uppercase; 
	letter-spacing: 2px; 
}
.scroll-line { 
	width: 2px; 
	height: 60px; 
	background: linear-gradient(180deg, var(--primary), transparent); 
	margin: 1rem auto 0; 
	animation: scrollPulse 2s infinite; 
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: translateY(0); } 50% { opacity: 1; transform: translateY(10px); } }

/* ================================
   Buttons
   ================================ */
.btn {
	display: inline-block; 
	padding: 1rem 2.5rem; 
	font-weight: 600; 
	border-radius: 0; 
	cursor: pointer; 
	transition: all 0.3s ease; 
	font-size: 0.95rem; 
	letter-spacing: 0.5px; 
}
.btn-primary {
	background: var(--primary); 
	color: var(--light); 
	clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%); 
}
.btn-primary:hover {
	background: var(--dark); 
	transform: translateY(-3px); 
	box-shadow: 0 10px 30px rgba(35,79,123,0.3); 
}
.btn-outline {
	background: transparent; 
	color: var(--gray-50); 
	border: 2px solid var(--gray-50); 
}
.btn-outline:hover {
	background: var(--primary); 
	color: var(--light); 
}
.btn-light-large {
	background: var(--light); 
	color: var(--primary); 
	padding: 1.2rem 3rem; 
	font-size: 1.05rem; 
	clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%); 
}
.btn-light-large:hover {
	background: var(--accent); 
	color: var(--dark); 
	transform: translateY(-3px); 
}
.btn-primary-large {
	background: var(--primary); 
	color: var(--light); 
	padding: 1.2rem 3rem; 
	font-size: 1.05rem; 
	clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%); 
	border: none; 
}
.btn-primary-large:hover { 
	background: var(--dark); 
	transform: translateY(-3px); 
	box-shadow: 0 10px 30px rgba(0,0,0,0.2); 
}

/* ================================
   Quote Section
   ================================ */
.quote-section { 
	padding: 0.5rem 0; 
	background: var(--primary); 
}
.featured-quote { 
	max-width: 900px; 
	margin: 0 auto; 
	text-align: center; 
	color: var(--light); 
}
.featured-quote p { 
	font-family: var(--font-display); 
	font-size: clamp(1.3rem, 3vw, 2rem); 
	font-style: italic; 
	line-height: 1.6; 
	margin-bottom: 2rem; 
}
.featured-quote footer { 
	font-family: var(--font-body); 
	font-size: 0.9rem; 
	color: var(--secondary); 
	font-style: normal; 
	letter-spacing: 1px; 
}

/* ================================
   Services Asymmetric
   ================================ */
.services-asymmetric { 
	padding: 2rem 0; 
	background: var(--gray-50); 
}
.section-header-split {
	display: grid; 
	grid-template-columns: 1fr 1.5fr; 
	gap: 4rem; 
	margin-bottom: 2rem; 
	align-items: end; 
}
/* .section-label {  */
/* display: block;  */
/* font-size: 0.75rem;  */
/* font-weight: 600;  */
/* color: var(--accent);  */
/* text-transform: uppercase;  */
/* letter-spacing: 3px;  */
/* margin-bottom: 1rem;  */
/* } */
.section-label {
	display: block; 
	font-size: 1rem; 
	font-weight: 600; 
	color: var(--gray-700); 
	text-transform: uppercase; 
	letter-spacing: 2.5px; 
	margin-bottom: 1rem; 
}
.section-title {
font-size: clamp(1.5rem, 4vw, 3rem);
margin: 0; 
}
.section-intro {
font-size: 1.1rem; 
color: var(--gray-700); 
line-height: 1.8; 
}

.services-grid-asymmetric { 
display: grid; 
grid-template-columns: 1fr 1fr; 
gap: 2rem; 
}
.service-card-large { 
grid-column: span 1; 
background: var(--light); 
padding: 3rem; 
position: relative; 
box-shadow: 0 5px 25px rgba(0,0,0,0.08); 
transition: all 0.4s ease; 
}
.service-card-medium { 
background: var(--light); 
padding: 2.5rem; 
position: relative; 
box-shadow: 0 5px 25px rgba(0,0,0,0.08); 
transition: all 0.4s ease; 
}
.service-card-large:hover, .service-card-medium:hover { 
transform: translateY(-10px); 
box-shadow: 0 15px 40px rgba(0,0,0,0.12); 
}
.card-number { 
position: absolute; 
top: 1.5rem; 
right: 1.5rem; 
font-family: var(--font-display); 
font-size: 4rem; 
font-weight: 900; 
color: rgba(35,79,123,0.05); 
}
.service-card-large h3, .service-card-medium h3 { 
font-size: 1.6rem; 
margin-bottom: 1rem; 
color: var(--primary); 
}
.service-card-large p, .service-card-medium p { 
color: var(--gray-700); 
line-height: 1.7; 
}
.card-icon { 
position: absolute; 
bottom: 1.5rem; 
right: 1.5rem; 
color: var(--secondary); 
opacity: 0.4; 
}

/* ================================
   Products Editorial
   ================================ */
.products-editorial { padding: 2rem 0; }
.editorial-header { margin-bottom: 3rem; }
.products-magazine-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 4rem; }
.product-feature { position: relative; overflow: hidden; background: var(--light); box-shadow: 0 5px 25px rgba(0,0,0,0.08); transition: all 0.4s ease; }
.product-large { grid-column: span 1; grid-row: span 2; }
.product-image { height: 100%; overflow: hidden; position: relative; }
.product-large .product-image { height: 500px; }
.product-medium .product-image { height: 250px; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-feature:hover .product-image img { transform: scale(1.1); }
.product-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, transparent 0%, rgba(35,79,123,0.9) 100%); display: flex; align-items: flex-end; justify-content: center; padding: 2rem; opacity: 0; transition: opacity 0.4s ease; }
.product-feature:hover .product-overlay { opacity: 1; }
.overlay-link { color: var(--light); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; padding: 0.8rem 2rem; border: 2px solid var(--light); transition: all 0.3s ease; }
.overlay-link:hover { background: var(--light); color: var(--primary); }
.product-content { padding: 1rem; }
.product-category { font-size: 0.7rem; color: var(--gray-700); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem; font-weight: 600; }
.product-content h3 { font-size: 1.5rem; margin-bottom: 0.8rem; color: var(--primary); }
.product-content p { color: var(--gray-700); font-size: 0.95rem; line-height: 1.6; }
.editorial-cta { text-align: center; margin-top: 3rem; }

/* Additional styles continue... */
.trust-diagonal { padding: 2rem 0; position: relative; background: var(--gray-50); overflow: hidden; }
.diagonal-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(35,79,123,0.03) 0%, transparent 100%); clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%); z-index: 0; }
.trust-content { position: relative; z-index: 1; }
.trust-title { font-size: clamp(1.5rem, 4vw, 3rem); text-align: center; margin-bottom: 4rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; }
.trust-item { background: var(--light); padding: 2.5rem; box-shadow: 0 5px 20px rgba(0,0,0,0.06); transition: all 0.4s ease; }
.trust-item:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.trust-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary), #1a3a5c); color: var(--light); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%); }
.trust-item h3 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--primary); }
.trust-item p { color: var(--gray-700); line-height: 1.7; }

/* CTA Split */
.cta-split {
	/* display: grid;  */
	/* grid-template-columns: 1fr 1fr;  */
	/* min-height: 500px;  */
}
.cta-content-side { 
	background: var(--primary); 
	/* display: flex;  */
	/* align-items: center;  */
	/* justify-content: center;  */
	padding: 2rem 3rem;
}
.cta-inner { 
/* max-width: 500px;  */
	color: var(--light);
}
.cta-label { font-size: 1rem; color: var(--light); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 1.5rem; display: block; font-weight: 600}
.cta-title { font-size: clamp(2rem, 4vw, 3.5rem); color: var(--light); margin-bottom: 1.5rem; }
.cta-description { font-size: 1.1rem; color: rgba(255,255,255,0.9); line-height: 1.7; margin-bottom: 2.5rem; }
.cta-visual-side { position: relative; background: linear-gradient(165deg, #1a3a5c 0%, var(--primary) 100%); }
.cta-pattern { width: 100%; height: 100%; background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,0.03) 35px, rgba(255,255,255,0.03) 70px); }

/* Footer */
.footer-modern { background: var(--dark); color: var(--light); padding: 4rem 0 2rem; }
.footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-col .footer-brand { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.footer-brand .brand-icon { width: 45px; height: 45px; font-size: 1.2rem; }
.footer-brand .brand-name { color: var(--light); font-size: 1.2rem; }
.footer-brand .brand-subtitle { color: var(--secondary); }
.footer-tagline { color: rgba(255,255,255,0.7); line-height: 1.7; font-size: 0.95rem; }
.footer-links-col h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--light); margin-bottom: 1.5rem; }
.footer-links-col ul { list-style: none; }
.footer-links-col li { margin-bottom: 0.8rem; }
.footer-links-col a { color: rgba(255,255,255,0.7); transition: all 0.3s ease; font-size: 0.9rem; }
.footer-links-col a:hover { color: var(--accent); padding-left: 5px; }
.footer-contact-col h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--light); margin-bottom: 1.5rem; }
.footer-contact-list { list-style: none; }
.footer-contact-list li { color: rgba(255,255,255,0.7); margin-bottom: 1rem; font-size: 0.9rem; margin-top: 1rem; }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; position: relative; }
.footer-bottom p { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.footer-accent-line { width: 150px; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); margin: 1.5rem auto 0; }
.footer-modern ul{
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.footer-modern li{
  margin: 0 0 .5rem 0; /* optional spacing */
}

/* Page Hero */
.page-hero-minimal {
	padding: 9rem 0 2rem;
	background: var(--gray-50);
	position: relative;
	overflow: hidden;
}
.hero-minimal-content { max-width: 900px; }
.page-label { 
	display: block; 
	font-size: 1rem; 
	font-weight: 600;
	color: var(--gray-700); 
	text-transform: uppercase; 
	letter-spacing: 2px; 
	margin-bottom: 1rem; 
}
.page-title-large { font-size: clamp(1.5rem, 3vw, 3rem); margin-bottom: 2rem; }
.page-intro-large {
	font-size: 1.3rem; 
	color: var(--gray-700); 
	line-height: 1.8; 
	/* max-width: 700px;  */
	text-align: justify 
}
.hero-minimal-accent { position: absolute; top: 50%; right: -100px; width: 300px; height: 300px; background: linear-gradient(135deg, rgba(35,79,123,0.05) 0%, transparent 100%); border-radius: 50%; }

/* About-Split */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	/* align-items: center; */
}

/* Story Split */
.story-split { 
	padding: 1rem 0; 
}
.story-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 5rem;
	align-items: center;
}
.story-visual { position: relative; }
.story-visual img { width: 100%; height: 500px; object-fit: cover; clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%); }
.story-title { 
	font-size: 2.5rem;
	margin-bottom: 2rem;
}
.lead-paragraph { font-size: 1.2rem; font-weight: 500; color: var(--primary); line-height: 1.8; margin-bottom: 1.5rem; }
.story-text p { 
	color: var(--gray-700); 
	line-height: 1.8; 
	/* margin-bottom: 0rem;  */
}

/* Mission Vision */
.mission-vision-cards { padding: 2rem 0; background: var(--gray-50); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1200px; margin: 0 auto; padding: 1rem 0rem; }
.mv-card { 
	background: var(--light); 
	padding: 2rem 2rem; 
	box-shadow: 0 10px 40px rgba(0,0,0,0.08); 
	position: relative; 
	transition: all 0.4s ease; 
}
.mv-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.mv-icon { margin-bottom: 2rem; color: var(--primary); opacity: 0.8; }
.mv-card h3 { font-size: 2rem; margin-bottom: 1.5rem; color: var(--primary); }
.mv-card p { font-size: 1.05rem; color: var(--gray-700); line-height: 1.8; }

/* Values */
.values-section { padding: 2rem 0; }
.section-header-centered { text-align: center; margin-bottom: 2rem; }
.values-asymmetric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card { background: var(--gray-50); padding: 2.5rem; position: relative; transition: all 0.4s ease; }
.value-large { grid-column: span 2; }
.value-card:hover { background: var(--light); box-shadow: 0 10px 30px rgba(0,0,0,0.1); transform: translateY(-5px); }
.value-number { font-family: var(--font-display); font-size: 5rem; font-weight: 900; color: rgba(35,79,123,0.08); position: absolute; top: 1rem; right: 1.5rem; }
.value-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--primary); position: relative; z-index: 1; }
.value-card p { color: var(--gray-700); line-height: 1.7; position: relative; z-index: 1; }

/* Expertise */
.expertise-timeline { padding: 3rem 0; background: var(--gray-50); }
.expertise-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; margin-top: 3rem; }
.expertise-item { background: var(--light); padding: 2.5rem; transition: all 0.4s ease; border-left: 4px solid var(--secondary); }
.expertise-item:hover { border-left-color: var(--gray-700); transform: translateX(10px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.expertise-icon { width: 60px; height: 60px; background: var(--gray-50); color: var(--primary); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%); }
.expertise-item h3 { font-size: 1.3rem; margin-bottom: 0.8rem; color: var(--primary); }
.expertise-item p { color: var(--gray-700); line-height: 1.6; }

/* Products Detail */
.product-detail-section { padding: 3rem 0; scroll-margin-top: 80px; }
.bg-alt { background: var(--gray-50); }
.product-detail-layout { 
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 5rem;
	/* align-items: center; */
}
.product-layout-reverse { grid-template-columns: 1.3fr 1fr; }
.product-layout-reverse .product-detail-visual { order: 2; }
.product-layout-reverse .product-detail-content { order: 1; }
.product-detail-visual { position: relative; }
.product-detail-visual img { width: 100%; height: 350px; object-fit: cover; clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%); }
.product-badge { position: absolute; top: 2rem; left: 2rem; background: var(--accent); color: var(--dark); font-size: 0.75rem; font-weight: 600; padding: 0.8rem 1.5rem; text-transform: uppercase; letter-spacing: 2px; clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%); }
.product-detail-title { font-size: 2.5rem; margin-bottom: 1.5rem; }
.product-detail-lead { font-size: 1.15rem; color: var(--gray-700); line-height: 1.8; margin-bottom: 2rem; text-align: justify }
.product-features-list h3 { font-size: 1.3rem; margin-bottom: 1.5rem; color: var(--primary); }
.product-features-list ul { list-style: none; margin-bottom: 2rem; }
.product-features-list li { padding: 1rem 0; border-bottom: 1px solid var(--gray-200); color: var(--gray-700); line-height: 1.7; }
.product-features-list strong { color: var(--primary); font-weight: 600; }
.product-certifications { display: flex; gap: 1rem; flex-wrap: wrap; }
.cert-badge { background: var(--primary); color: var(--light); padding: 0.6rem 1.2rem; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* Contact */
.contact-section-split { padding: 6rem 0; }
.contact-grid-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 5rem; }
.form-header { margin-bottom: 2.5rem; }
.form-header h2 { font-size: 2rem; margin-bottom: 1rem; color: var(--primary); }
.form-header p { color: var(--gray-700); font-size: 1.05rem; }

.contact-form-modern { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-weight: 600; color: var(--primary); margin-bottom: 0.5rem; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea { padding: 1rem; border: 2px solid var(--gray-200); font-family: var(--font-body); font-size: 1rem; transition: all 0.3s ease; background: var(--light); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(35,79,123,0.1); }
.form-error { color: #dc2626; font-size: 0.85rem; margin-top: 0.5rem; display: none; }
.form-error.show { display: block; }
.form-success-message { background: #dcfce7; color: #166534; padding: 1rem; text-align: center; font-weight: 500; margin-top: 1rem; }

.contact-info-area { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-card, .contact-hours-card { background: var(--gray-50); padding: 2.5rem; }
.contact-info-card h3, .contact-hours-card h3 { font-size: 1.5rem; margin-bottom: 2rem; color: var(--primary); }
.info-item { display: flex; gap: 1.5rem; margin-bottom: 2rem; }
.info-icon { width: 50px; height: 50px; background: var(--primary); color: var(--light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%); }
.info-content h4 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--primary); }
.info-content p { color: var(--gray-700); line-height: 1.6; }
.info-content a { color: var(--primary); font-weight: 500; }
.info-content a:hover { color: var(--accent); }

.hours-list { margin-bottom: 1.5rem; }
.hours-row { display: flex; justify-content: space-between; padding: 0.8rem 0; border-bottom: 1px solid var(--gray-200); color: var(--gray-700); }
.hours-note { font-size: 0.85rem; color: var(--gray-700); font-style: italic; }

/* Animations */
.card-reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
.card-reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
    .container-wide { padding: 0 1rem; }
    .nav-wrapper { padding: 1rem 2rem; }
    .hero-grid, .story-grid, .product-detail-layout { grid-template-columns: 1fr; gap: 3rem; }
    .section-header-split { grid-template-columns: 1fr; gap: 2rem; }
    .services-grid-asymmetric { grid-template-columns: 1fr; }
    .products-magazine-grid { grid-template-columns: 1fr; }
    .product-large { grid-row: span 1; }
    .values-asymmetric-grid { grid-template-columns: 1fr; }
    .value-large { grid-column: span 1; }
    .expertise-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .cta-split { grid-template-columns: 1fr; }
    .contact-grid-layout { grid-template-columns: 1fr; }
    .mv-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { position: fixed; top: 80px; right: -100%; width: 300px; height: calc(100vh - 80px); background: var(--light); flex-direction: column; padding: 2rem; box-shadow: -5px 0 20px rgba(0,0,0,0.1); transition: right 0.3s ease; align-items: flex-start; gap: 1.5rem; }
    .nav-links.active { right: 0; }
    .nav-toggle { display: flex; }
    .nav-toggle.active .toggle-line:nth-child(1) { transform: rotate(45deg) translateY(10px); }
    .nav-toggle.active .toggle-line:nth-child(2) { opacity: 0; }
    .nav-toggle.active .toggle-line:nth-child(3) { transform: rotate(-45deg) translateY(-10px); }
    .hero-magazine { padding: 8rem 0 3rem; }
    .hero-stats { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; }
}
