*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:focus{outline:0;}
a{text-decoration:none; color:#231815;}
a:hover,img{transition:0.5s all;}
a,img{transition:0.5s all;}
img{border:none;max-width:100%;}
button{border:none;cursor:pointer;}
ul,li{list-style:none;}

:root {
	--magenta: #bc5a41;
	--red:     #a02327;
	--sky:     #31c2f7;
	--white:   #ffffff;
	--gray-bg: #f5f5f5;
	--text:    #555;
	--dark:    #111;
	--border:  #e0e0e0;
}

body {
	font-family:'Gilroy',sans-serif;
	font-size:14px;
	color:var(--text);
	line-height:1.6;
	overflow-x:hidden;
	background:#fff;
}

/* ===== TOP BAR ===== */
.top_bar {
	background:#f2f2f2;
	color:#525252;
	font-size:13px;
	padding:7px 0;
}
.top_bar .container {display:flex;justify-content:space-between;align-items:center;}
.top_bar a {color:#525252;margin-left:12px;}
.top_bar_right a i {margin-right:4px;}

/* ===== NAVBAR ===== */
.navbar {
	background:#fff;
	padding:0;
	border-bottom:1px solid var(--border);
	position:sticky;top:0;z-index:100;
	transition:box-shadow 0.3s;
}
.navbar.scrolled {box-shadow:0 2px 20px rgba(0,0,0,0.12);}
.navbar .container {display:flex;align-items:center;justify-content:space-between;padding:18px 24px;}
.logo img {height:70px;}
.nav_menu {display:flex;gap:55px;align-items:center;}
.nav_menu > li {position:relative;}
.nav_menu > li > a {
	display:block;
	padding:8px 16px;
	font-size:16px;
	font-weight:600;
	color:var(--white);
	text-transform:uppercase;
	letter-spacing:0.5px;
	border-bottom:2px solid var(--magenta);
}
.nav_menu > li > a:hover, .nav_menu > li > a.active {border-bottom:2px solid var(--white); }
.nav_menu .submenu {
	position:absolute;top:100%;left:0;
	background:#fff;
	min-width:220px;
	box-shadow:0 8px 30px rgba(0,0,0,0.12);
	display:none;
	z-index:200;
}
.nav_menu > li:hover .submenu {display:block;}
.submenu a {display:block;padding:10px 18px;font-size:13px;color:var(--text);border-bottom:1px solid #f0f0f0;}
.submenu a:hover {background:var(--magenta);color:#fff;}
.nav_icons {display:flex;gap:14px;align-items:center;}
.nav_icons a {font-size:18px;color:var(--dark);}
.cta_btn {
	background:var(--magenta);
	color:#fff !important;
	padding:14px 22px !important;
	border-radius:4px;
	font-weight:600 !important;
}
.cta_btn:hover {background:var(--red);}

.menu-box {
	background:var(--magenta);
}

.menu-box .container {
	padding: 5px 24px;
}

.menu-contact {
	display: flex;
	gap:50px;
}

.main-header-five__contact-list {
	position: relative;
	display: flex;
	align-items: center;
	padding: 6px 0;
}

.main-header-five__contact-list li {
	position: relative;
	display: flex;
	align-items: center;
}

.main-header-five__contact-list li+li {
	margin-left: 30px;
}

.main-header-five__contact-list li .icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 42px;
	width: 42px;
	border: 1px solid var(--magenta);
	border-radius: 50%;
	font-size: 15px;
	color: var(--magenta);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.main-header-five__contact-list li:hover .icon {
	background-color: var(--magenta);
	color: var(--white);
}

.main-header-five__contact-list li .content {
	margin-left: 10px;
}

.main-header-five__contact-list li .content p {
	font-size: 12px;
	font-weight: 700;
	color: var(--austry-white);
	line-height: 12px;
}

.main-header-five__contact-list li .content h4 {
	font-size: 16px;
	font-weight: 700;
	line-height: 20px;
	margin-top: 4px;
}

.main-header-five__contact-list li .content h4 a {
	color: var(--austry-white);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.main-header-five__contact-list li .content h4 a:hover {
	color: var(--austry-black);
}




/* Mobile toggle */
.menu-toggle {display:none;background:none;border:none;font-size:26px;color:var(--dark);}

/* ===== BANNER / HERO ===== */
.hero {
	position:relative;
	overflow:hidden;
	height:clamp(650px, 60vh, 680px);
}
.hero_slides {position:relative;height:100%;}
.hero_slide {
	position:absolute;inset:0;
	opacity:0;transition:opacity 1.5s ease;
}
.hero_slide.active {opacity:1;}
.hero_slide img {width:100%;height:100%;object-fit:cover;}
.hero_overlay {
	position:absolute;inset:0;
	background:linear-gradient(135deg, rgba(0,40,100,0.72) 0%, rgba(0,0,0,0.35) 100%);
	display:flex;align-items:center;justify-content:center;
}
.hero_content {
	text-align:center;color:#fff;max-width:780px;padding:0 24px;
	animation:fadeUp 1s ease 0.3s both;
}
.hero_content h1 {
	font-size:clamp(28px, 4vw, 52px);
	font-weight:800;
	line-height:1.2;
	margin-bottom:16px;
	letter-spacing:-0.5px;
}
.hero_content p {
	font-size:clamp(15px, 1.8vw, 18px);
	font-weight:300;
	margin-bottom:28px;
	opacity:0.92;
}
.hero_btns {display:flex;gap:16px;justify-content:center;flex-wrap:wrap;}
.btn_primary {
	background:var(--magenta);color:#fff;
	padding:13px 32px;border-radius:4px;
	font-size:15px;font-weight:600;
	display:inline-block;
	transition:all 0.3s;
}
.btn_primary:hover {background:var(--red);transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,32,130,0.35);}
.btn_outline {
	border:2px solid #fff;color:#fff;
	padding:11px 32px;border-radius:4px;
	font-size:15px;font-weight:600;
	display:inline-block;
	transition:all 0.3s;
}
.btn_outline:hover {background:#fff;color:var(--magenta);}



/* ===== PAGE BANNER ===== */
.page_banner { position: relative; height: 280px; overflow: hidden; background: var(--magenta); }
.page_banner img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.page_banner_overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,40,100,0.85) 0%, rgba(0,0,0,0.4) 100%); display: flex; align-items: center; justify-content: center; }
.page_banner h1 { color: #fff; font-size: clamp(28px, 4vw, 48px); font-weight: 800; text-align: center; padding: 0 24px; }

/* ===== BREADCRUMB ===== */
.breadcrumb { background: var(--gray-bg); padding: 12px 0; font-size: 13px; }
.breadcrumb .container { max-width: 1400px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: var(--magenta); }
.breadcrumb span { color: var(--text); opacity: 0.6; }


/* ===== SECTIONS COMMON ===== */
.section {padding:80px 0;}
.section_gray {background:var(--gray-bg);}
.container {max-width:1400px;margin:0 auto;padding:0 24px;}
.section_header {text-align:center;margin-bottom:56px;}
.section_header h2 {
	font-size:clamp(24px,3vw,38px);
	font-weight:800;color:var(--dark);
	margin-bottom:12px;
}
.section_header p {
	font-size:16px;color:var(--text);
	max-width:600px;margin:0 auto;
}
.title_blue {color:var(--magenta) !important;}

/* ===== CATEGORY GRID ===== */
.cat_grid {
	display:grid;
	grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
	gap:24px;
}
.cat_card {
	background:#fff;border-radius:10px;
	overflow:hidden;
	box-shadow:0 4px 16px rgba(0,0,0,0.07);
	transition:all 0.4s;
	text-align:center;
}
.cat_card:hover {transform:translateY(-6px);box-shadow:0 12px 36px rgba(0,0,0,0.14);}
.cat_card_img {overflow:hidden;height:320px;}
.cat_card_img img {width:100%;height:100%;object-fit:cover;transition:transform 0.9s;}
.cat_card:hover .cat_card_img img {transform:scale(1.1);}
.cat_card_info {padding:18px 14px;}
.cat_card_info h3 {font-size:14px;font-weight:700;color:var(--dark);margin-bottom:6px;}
.cat_card_info p {font-size:12px;color:var(--text);opacity:0.75;}

/* ===== PRODUCT GRID ===== */
.prod_grid {
	display:grid;
	grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
	gap:28px;
}
.prod_card {
	background:#fff;border-radius:10px;overflow:hidden;
	box-shadow:0 4px 18px rgba(0,0,0,0.07);
	transition:all 0.4s;
}

/* ===== ADVANTAGES ===== */
.adv_grid {
	display:grid;
	grid-template-columns:repeat(auto-fill,minmax(380px,1fr));
	gap:32px;
}
.adv_card {
	text-align:center;padding:36px 24px;
	background:#fff;border-radius:12px;
	box-shadow:0 4px 20px rgba(0,0,0,0.06);
	transition:all 0.3s;
}
.adv_card:hover {transform:translateY(-4px);box-shadow:0 12px 40px rgba(0,0,0,0.12);}
.adv_icon {width:72px;height:72px;border-radius:50%;background:linear-gradient(135deg,var(--magenta),var(--red));display:flex;align-items:center;justify-content:center;margin:0 auto 20px;font-size:30px;color:#fff;}
.adv_card h3 {font-size:17px;font-weight:700;color:var(--dark);margin-bottom:10px;}
.adv_card p {font-size:13px;color:var(--text);line-height:1.7;}

/* ===== ABOUT / CERTIFICATE ===== */
.about_grid {
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:60px;align-items:center;
}
.about_text h2 {font-size:clamp(22px,2.5vw,34px);font-weight:800;color:var(--dark);margin-bottom:20px;}
.about_text h2 span {color:var(--magenta);}
.about_text p {font-size:15px;color:var(--text);line-height:1.8;margin-bottom:16px;}
.about_stats {display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:30px;}
.stat_box {text-align:center;padding:22px 14px;background:var(--gray-bg);border-radius:10px;}
.stat_num {font-size:32px;font-weight:800;color:var(--magenta);}
.stat_label {font-size:13px;color:var(--text);margin-top:4px;}
.about_img img {width:100%;border-radius:12px;box-shadow:0 8px 40px rgba(0,0,0,0.12);}

/* ===== BRANDS ===== */
.brand_row {
	display:flex;flex-wrap:wrap;gap:32px;align-items:center;justify-content:center;
}
.brand_logo img {height:60px;opacity:0.65;filter:grayscale(100%);transition:0.3s;}
.brand_logo img:hover {opacity:1;filter:none;}

/* ===== BLOG / NEWS ===== */
.news_grid {
	display:grid;
	grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
	gap:28px;
}
.news_card {background:#fff;border-radius:10px;overflow:hidden;box-shadow:0 4px 18px rgba(0,0,0,0.07);transition:0.3s;}
.news_card:hover {transform:translateY(-4px);box-shadow:0 12px 36px rgba(0,0,0,0.13);}
.news_img {overflow:hidden;height:200px;}
.news_img img {width:100%;height:100%;object-fit:cover;transition:transform 0.9s;}
.news_card:hover .news_img img {transform:scale(1.08);}
.news_body {padding:22px 24px;}
.news_date {font-size:12px;color:var(--magenta);font-weight:600;margin-bottom:8px;}
.news_body h3 {font-size:15px;font-weight:700;color:var(--dark);line-height:1.5;margin-bottom:10px;}
.news_body p {font-size:13px;color:var(--text);line-height:1.7;}

/* ===== CONTACT / FORM ===== */
.contact_section {background:var(--magenta);color:#fff;}
.contact_grid {
	display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;
}
.contact_info h2 {font-size:clamp(22px,2.5vw,34px);font-weight:800;margin-bottom:20px;}
.contact_info p {font-size:15px;opacity:0.85;line-height:1.7;margin-bottom:20px;}
.contact_item {display:flex;align-items:center;gap:12px;margin-bottom:16px;font-size:15px;}
.contact_item i {font-size:20px;width:36px;}
.contact_form {background:#fff;border-radius:12px;padding:36px 32px;}
.form_row {display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px;}
.form_row_full {margin-bottom:16px;}
.form-control {
	width:100%;padding:12px 16px;
	border:1.5px solid var(--border);
	border-radius:6px;font-size:14px;
	font-family:'Gilroy',sans-serif;
	transition:border-color 0.3s;
}
.form-control:focus {border-color:var(--magenta);outline:none;}
textarea.form-control {resize:vertical;min-height:110px;}
.btn_submit {
	width:100%;background:var(--magenta);color:#fff;
	padding:13px;border-radius:6px;
	font-size:15px;font-weight:700;
	font-family:'Gilroy',sans-serif;
	border:none;cursor:pointer;
	transition:0.3s;
}
.btn_submit:hover {background:var(--red);}

/* ===== FOOTER ===== */
.footer {background:#000000;color:#c0c0d0;padding:60px 0 0;font-size:13px;}
.footer_grid {
	display:grid;
	grid-template-columns:2fr 1fr 1fr 1fr;
	gap:40px;margin-bottom:48px;
}
.footer_brand img {height:48px;margin-bottom:16px;}
.footer_brand p {line-height:1.7;margin-bottom:14px;}
.footer h4 {color:#fff;font-size:15px;font-weight:700;margin-bottom:20px;}
.footer ul li {margin-bottom:10px;}
.footer ul a {color:#c0c0d0;transition:color 0.3s;}
.footer ul a:hover {color:#fff;}
.footer_bottom {
	border-top:1px solid rgba(255,255,255,0.1);
	padding:20px 0;
	text-align:center;
	font-size:12px;opacity:0.6;
}

/* ===== FLOAT WHATSAPP ===== */
.float_wa {
	position:fixed;bottom:28px;right:28px;
	width:56px;height:56px;
	background:#25d366;border-radius:50%;
	display:flex;align-items:center;justify-content:center;
	font-size:28px;color:#fff;
	box-shadow:0 4px 20px rgba(37,211,102,0.45);
	z-index:999;transition:transform 0.3s;
}
.float_wa:hover {transform:scale(1.1);}

/* ===== VIDEO PLAY BUTTON ===== */
.about_img {
    position: relative;
    display: inline-block;
}
.video_play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(188, 90, 65, 0.9);
    color: white;
    border: none;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(188, 90, 65, 0.4);
    z-index: 10;
}
.video_play_btn:hover {
    background: rgba(160, 35, 39, 0.95);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 24px rgba(188, 90, 65, 0.6);
}
.video_play_btn i {
    margin-left: 4px;
}

/* ===== VIDEO MODAL ===== */
.video_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}
.video_modal_content {
    position: relative;
    width: 90%;
    max-width: 800px;
    height: 80vh;
    max-height: 600px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    animation: zoomIn 0.3s ease;
}
.video_modal_close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}
.video_modal_close:hover {
    background: rgba(255, 255, 255, 0.5);
}
.video_modal_iframe {
    width: 100%;
    height: 100%;
}
.video_modal_iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
	from{opacity:0;transform:translateY(30px);}
	to{opacity:1;transform:translateY(0);}
}
.fade-up {opacity:0;transform:translateY(30px);transition:opacity 0.8s ease,transform 0.8s ease;}
.fade-up.visible {opacity:1;transform:translateY(0);}


/* ===== PRODUCTS GRID ===== */
.products_layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; padding: 48px 0; max-width: 1400px; margin: 0 auto; }
.sidebar { }
.sidebar_widget { background: #fff; border-radius: 10px; padding: 24px; margin-bottom: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.sidebar_widget h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--magenta); }
.sidebar_widget ul li { margin-bottom: 10px; }
.sidebar_widget ul li a { font-size: 13px; color: var(--text); padding: 6px 0; display: block; transition: 0.3s; }
.sidebar_widget ul li a:hover, .sidebar_widget ul li a.active { color: var(--magenta); padding-left: 8px; font-weight: 600; }


.prod_card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,0.07); transition: 0.4s; }
.prod_card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.13); }
.prod_img { overflow: hidden; aspect-ratio: 1 / 1; }
.prod_img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s; }
.prod_card:hover .prod_img img { transform: scale(1.08); }
.prod_info { padding: 18px; }
.prod_tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.tag { background: #eef3fb; color: var(--magenta); padding: 2px 9px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.btn_sm { background: var(--magenta); color: #fff; padding: 8px 18px; border-radius: 4px; font-size: 13px; font-weight: 600; display: inline-block; transition: 0.3s; }
.btn_sm:hover { background: var(--red); }

/* ===== PRODUCT DETAIL ===== */
.detail_layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 48px 0; max-width: 1400px; margin: 0 auto; }
.detail_gallery_main { border-radius: 12px; overflow: hidden; margin-bottom: 12px; aspect-ratio: 4/3; }
.detail_gallery_main img { width: 100%; height: 100%; object-fit: cover; }
.detail_info h1 { font-size: clamp(18px, 2.5vw, 28px); font-weight: 800; color: var(--dark); line-height: 1.3; margin-bottom: 20px; }
.spec_table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.spec_table tr { border-bottom: 1px solid var(--border); }
.spec_table td { padding: 10px 0; font-size: 13px; }
.spec_table td:first-child { color: var(--dark); font-weight: 600; width: 140px; }
.spec_table td:last-child { color: var(--text); }
.detail_desc { margin-top: 24px; }
.detail_desc h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.detail_desc p { font-size: 14px; color: var(--text); line-height: 1.8; margin-bottom: 12px; }
.related_products { margin-top: 60px; }

/* ===== ABOUT PAGE ===== */
.about_content { margin: 0 auto; }
.about_content p { font-size: 15px; color: var(--text); line-height: 1.9; margin-bottom: 18px; }
.about_content h2 { font-size: 22px; font-weight: 700; color: var(--dark); margin: 40px 0 16px; }
.about_content h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin: 28px 0 12px; }
.about_stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 48px 0; }
.stat_card { background: #fff; border-radius: 12px; padding: 32px 20px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.07); transition: 0.3s; }
.stat_card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }
.stat_num { font-size: 40px; font-weight: 800; color: var(--magenta); }
.stat_label { font-size: 13px; color: var(--text); margin-top: 6px; }
.cert_grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; margin-top: 24px; }
.cert_card { background: #fff; border-radius: 10px; padding: 20px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.cert_card img { height: 60px; margin-bottom: 12px; }
.cert_card p { font-size: 13px; font-weight: 600; color: var(--dark); }


/* ===== PRODUCTION PROCESS ===== */
.process_grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 32px; }
.process_card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,0.07); transition: 0.4s; text-align: center; }
.process_card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.13); }
.process_card .process_img { overflow: hidden; aspect-ratio: 4/3; }
.process_card .process_img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s; }
.process_card:hover .process_img img { transform: scale(1.08); }
.process_card .process_info { padding: 16px; }
.process_card .process_info h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.process_card .process_info p { font-size: 12px; color: var(--text); }
.process_arrow { display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 24px; font-weight: bold; }

/* ===== SHOWROOM & TEAM ===== */
.showroom_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.showroom_card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,0.07); transition: 0.4s; }
.showroom_card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.13); }
.showroom_card img { width: 100%; height: 555px; object-fit: cover; transition: transform 0.9s; }
.showroom_card:hover img { transform: scale(1.05); }
.showroom_card .showroom_info { padding: 18px; text-align: center; }
.showroom_card .showroom_info h4 { font-size: 15px; font-weight: 700; color: var(--dark); }

/* ===== TEAM SECTION ===== */
.team_grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 32px; }
.team_card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,0.07); transition: 0.4s; text-align: center; }
.team_card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.13); }
.team_card .team_img { overflow: hidden; aspect-ratio: 1/1; }
.team_card .team_img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s; }
.team_card:hover .team_img img { transform: scale(1.08); }
.team_card .team_info { padding: 18px; }
.team_card .team_info h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.team_card .team_info p { font-size: 13px; color: var(--text); }

/* ===== FACTORY GALLERY ===== */
.factory_gallery { margin-top: 24px; }
.factory_hero { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,0.08); margin-bottom: 20px; }
.factory_hero img { width: 100%; object-fit: cover; display: block; }
.factory_grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.factory_card { border-radius: 10px; overflow: hidden; box-shadow: 0 4px 14px rgba(0,0,0,0.07); transition: 0.4s; cursor: pointer; }
.factory_card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.14); }
.factory_card img { width: 100%; height: 140px; object-fit: cover; display: block; transition: transform 0.6s; }
.factory_card:hover img { transform: scale(1.08); }

/* ===== CLIENTS SECTION ===== */
.clients_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.client_card { background: #fff; border-radius: 10px; padding: 20px; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: 0.3s; aspect-ratio: 4/3; overflow: hidden; }
.client_card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.client_card img { width: 100%; height: 100%; object-fit: cover;  }
.client_card:hover img { filter: grayscale(0%); opacity: 1; }

@media(max-width: 1024px) {
	.process_grid { grid-template-columns: repeat(3, 1fr); }
	.team_grid { grid-template-columns: repeat(2, 1fr); }
	.clients_grid { grid-template-columns: repeat(4, 1fr); }
	.factory_grid { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width: 768px) {
	.process_grid { grid-template-columns: repeat(2, 1fr); }
	.showroom_grid { grid-template-columns: repeat(2, 1fr); }
	.team_grid { grid-template-columns: repeat(2, 1fr); }
	.clients_grid { grid-template-columns: repeat(3, 1fr); }
	.factory_grid { grid-template-columns: repeat(2, 1fr); }
	.factory_hero img {  }
}
@media(max-width: 480px) {
	.process_grid { grid-template-columns: 1fr; }
	.showroom_grid { grid-template-columns: 1fr; }
	.team_grid { grid-template-columns: 1fr; }
	.clients_grid { grid-template-columns: repeat(2, 1fr); }
	.factory_grid { grid-template-columns: 1fr; }
	.factory_hero img { }
}

/* ===== BLOG ===== */
.blog_grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.blog_card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,0.07); transition: 0.3s; }
.blog_card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.13); }
.blog_img { overflow: hidden; height: 200px; }
.blog_img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s; }
.blog_card:hover .blog_img img { transform: scale(1.08); }
.blog_body { padding: 22px; }
.blog_date { font-size: 12px; color: var(--magenta); font-weight: 600; margin-bottom: 8px; }
.blog_body h3 { font-size: 15px; font-weight: 700; color: var(--dark); line-height: 1.5; margin-bottom: 10px; }
.blog_body p { font-size: 13px; color: var(--text); line-height: 1.7; }

/* Blog detail */
.blog_detail { max-width: 800px; margin: 0 auto; padding: 48px 24px; }
.blog_detail h1 { font-size: clamp(20px, 3vw, 32px); font-weight: 800; color: var(--dark); line-height: 1.3; margin-bottom: 16px; }
.blog_detail .blog_meta { font-size: 13px; color: var(--magenta); font-weight: 600; margin-bottom: 32px; padding-bottom: 16px; border-bottom: 2px solid var(--border); }
.blog_detail h2 { font-size: 20px; font-weight: 700; color: var(--dark); margin: 36px 0 14px; }
.blog_detail p { font-size: 15px; color: var(--text); line-height: 1.9; margin-bottom: 16px; }
.blog_detail ul { margin: 12px 0 20px 24px; }
.blog_detail ul li { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 8px; list-style: disc; }
.blog_nav { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; padding-top: 32px; border-top: 2px solid var(--border); }
.blog_nav a { background: #fff; border-radius: 8px; padding: 16px; display: block; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: 0.3s; }
.blog_nav a:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.12); }
.blog_nav .nav_label { font-size: 12px; color: var(--magenta); font-weight: 600; margin-bottom: 6px; }
.blog_nav .nav_title { font-size: 14px; font-weight: 700; color: var(--dark); line-height: 1.4; }

/* ===== FAQ ===== */
.faq_list { max-width: 800px; margin: 0 auto; }
.faq_item { background: #fff; border-radius: 10px; margin-bottom: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); overflow: hidden; }
.faq_q { padding: 20px 24px; font-size: 15px; font-weight: 700; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: 0.3s; }
.faq_q:hover { color: var(--magenta); }
.faq_q::after { content: "+"; font-size: 22px; font-weight: 300; color: var(--magenta); transition: transform 0.3s; }
.faq_item.open .faq_q::after { transform: rotate(45deg); }
.faq_a { display: none; padding: 0 24px 20px; font-size: 14px; color: var(--text); line-height: 1.8; border-top: 1px solid var(--border); padding-top: 16px; }
.faq_item.open .faq_a { display: block; }

/* ===== CONTACT ===== */
.contact_grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact_info h2 { font-size: clamp(20px, 2.5vw, 32px); font-weight: 800; color: #fff; margin-bottom: 20px; }
.contact_info p { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 20px; }
.contact_item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; font-size: 15px; color: rgba(255,255,255,0.9); }
.contact_item i { font-size: 20px; width: 32px; color: var(--white); flex-shrink: 0; margin-top: 2px; }
.contact_form { background: #fff; border-radius: 12px; padding: 36px 32px; }
.contact_form h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 24px; }
.form_row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-control { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 6px; font-size: 14px; font-family: 'Gilroy', sans-serif; transition: border-color 0.3s; }
.form-control:focus { border-color: var(--magenta); outline: none; }
textarea.form-control { resize: vertical; min-height: 110px; }
.btn_submit { width: 100%; background: var(--magenta); color: #fff; padding: 13px; border-radius: 6px; font-size: 15px; font-weight: 700; font-family: 'Gilroy', sans-serif; border: none; cursor: pointer; transition: 0.3s; }
.btn_submit:hover { background: var(--red); }
.map_section { margin-top: 48px; }
.map_section iframe { width: 100%; height: 600px; border: 0; border-radius: 12px; }


.article_title {
	border-bottom: 1px solid #dfdfdf;
	padding-bottom: 15px;
	margin-bottom: 30px;
}

.article_content {
	font-size: 16px;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
}
.pagination ul {
	display: flex;
	gap: 8px;
}
.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    background: #fff;
    border: 1px solid #e8e8e8;
    text-decoration: none;
    transition: all 0.3s ease;
}
.pagination a:hover {
    background: var(--magenta);
    color: #fff;
    border-color: var(--magenta);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 0, 91, 0.25);
}
.pagination .active a {
    background: var(--magenta);
    color: #fff;
    border-color: var(--magenta);
    font-weight: 600;
}
.pagination .page-prev,
.pagination .page-next {
    padding: 0 16px;
    font-weight: 600;
}
.pagination .page-prev:hover,
.pagination .page-next:hover {
    background: #f0f0f0;
    color: var(--text);
    border-color: #e0e0e0;
    transform: none;
    box-shadow: none;
}


/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
	.about_grid,.contact_grid,.footer_grid{grid-template-columns:1fr;gap:40px;}
}
@media(max-width:768px){
	.menu-contact {
		display:none;
	}
	.nav_menu{display:none;flex-direction:column;position:absolute;top:100%;left:0;right:0;background:#fff;padding:20px;box-shadow:0 8px 30px rgba(0,0,0,0.12);z-index:200;}
	.nav_menu.open{display:flex; gap:0;}
	.nav_menu li a{padding:12px 0;border-bottom:1px solid #f0f0f0; color: #000000;}
	.menu-toggle{display:block;}
	.hero{height:clamp(300px,50vh,500px);}
	.hero_content h1{font-size:clamp(22px,5vw,34px);}
	.section{padding:56px 0;}
	.cat_grid,.prod_grid,.adv_grid,.news_grid{grid-template-columns:repeat(2,1fr);gap:16px;}
	.about_stats{grid-template-columns:repeat(3,1fr);gap:12px;}
	.form_row{grid-template-columns:1fr;}
	.footer_grid{grid-template-columns:repeat(2,1fr);gap:24px;}
	.pagination a, .pagination span { min-width: 36px; height: 36px; font-size: 13px; padding: 0 10px; }
}
@media(max-width:480px){
	.cat_grid,.prod_grid,.adv_grid,.news_grid{grid-template-columns:1fr;}
	.about_stats{grid-template-columns:1fr 1fr 1fr;}
	.footer_grid{grid-template-columns:1fr;}
	.pagination { gap: 6px; }
	.pagination a, .pagination span { min-width: 34px; height: 34px; font-size: 12px; padding: 0 8px; }
}

