﻿/* ===========================
   CN-ConnectWorld Global Styles
   =========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1a5276;
  --primary-light: #2471a3;
  --accent: #e67e22;
  --accent-hover: #d35400;
  --text-dark: #1c2833;
  --text-mid: #555;
  --text-light: #888;
  --bg-light: #f4f6f8;
  --bg-white: #fff;
  --border: #dde3ea;
  --radius: 6px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.14);
  --font: 'Segoe UI', Arial, sans-serif;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== HEADER / NAVBAR ===== */
header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  letter-spacing: -1px;
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
}

.logo-text {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo-sub {
  color: rgba(255,255,255,0.65);
  font-size: 11px;
  font-weight: 400;
  display: block;
  margin-top: -2px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
}

nav ul li a {
  color: rgba(255,255,255,0.88);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

nav ul li a:hover,
nav ul li a.active {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #1a3a5c 0%, #1a5276 50%, #1a6b8a 100%);
  color: #fff;
  padding: 80px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255,255,255,0.03);
  transform: rotate(-15deg);
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: rgba(230,126,34,0.2);
  border: 1px solid rgba(230,126,34,0.5);
  color: #f39c12;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero h1 span {
  color: #f39c12;
}

.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #f39c12;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 64px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  background: rgba(26,82,118,0.08);
  color: var(--primary-light);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-mid);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== PRODUCT CATEGORIES ===== */
.category-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.category-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border: 1px solid var(--border);
}

.category-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.category-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
}

.category-img.pharma { background: linear-gradient(135deg, #eaf4fb, #d6eaf8); }
.category-img.chem   { background: linear-gradient(135deg, #fef9e7, #fdebd0); }

.category-body {
  padding: 24px;
}

.category-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.category-body p {
  color: var(--text-mid);
  font-size: 14px;
  margin-bottom: 18px;
  line-height: 1.6;
}

.category-count {
  display: inline-block;
  background: var(--bg-light);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.btn-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-light);
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.2s;
}

.btn-category:hover { gap: 10px; }

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--bg-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.25s;
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.product-img {
  height: 160px;
  background: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-img-placeholder {
  font-size: 44px;
  color: #ccc;
}

.product-body {
  padding: 14px 16px;
}

.product-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-cas {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.product-tag {
  display: inline-block;
  background: rgba(26,82,118,0.07);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 12px;
}

.product-tag.chem {
  background: rgba(230,126,34,0.1);
  color: var(--accent);
}

.btn-inquire {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--primary);
  color: #fff;
  padding: 8px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.btn-inquire:hover { background: var(--primary-light); }

/* ===== FEATURES / WHY US ===== */
.bg-white { background: var(--bg-white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-light);
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.feature-item:hover {
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.feature-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.feature-item p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 60px 24px;
  text-align: center;
}

.cta-banner h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-whatsapp:hover { background: #1da851; transform: translateY(-1px); }

/* ===== FOOTER ===== */
footer {
  background: #0e2234;
  color: rgba(255,255,255,0.75);
  padding: 48px 24px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text {
  font-size: 18px;
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 260px;
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  background: var(--primary);
  color: #fff;
  padding: 40px 32px;
  border-radius: 12px;
}

.contact-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-item-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item-text label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 3px;
}

.contact-item-text span {
  font-size: 14px;
  font-weight: 500;
}

.contact-form-wrap {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font);
  color: var(--text-dark);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(36,113,163,0.08);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  padding: 13px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 8px;
}

.btn-submit:hover { background: var(--accent-hover); }

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: linear-gradient(135deg, #1a3a5c, #1a5276);
  color: #fff;
  padding: 60px 24px;
  text-align: center;
}

.about-hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 14px; }
.about-hero p { font-size: 16px; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text h2 { font-size: 26px; font-weight: 700; margin-bottom: 16px; color: var(--primary); }
.about-text p  { color: var(--text-mid); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }

.about-visual {
  background: linear-gradient(135deg, #eaf4fb, #d6eaf8);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}

.about-visual-icon { font-size: 80px; margin-bottom: 16px; }
.about-visual h3 { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.about-visual p { font-size: 13px; color: var(--text-mid); }

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.service-card-icon { font-size: 32px; margin-bottom: 14px; }
.service-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.service-card p  { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(135deg, #1a3a5c, #1a5276);
  color: #fff;
  padding: 50px 24px;
  text-align: center;
}

.page-banner h1 { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.page-banner p  { color: rgba(255,255,255,0.75); font-size: 15px; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
}

.breadcrumb-inner a { color: var(--primary-light); }
.breadcrumb-inner a:hover { text-decoration: underline; }

/* ===== FILTER BAR ===== */
.filter-bar {
  background: #fff;
  padding: 16px 24px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.filter-bar input {
  flex: 1;
  min-width: 200px;
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  outline: none;
}

.filter-bar input:focus { border-color: var(--primary-light); }

.filter-bar select {
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  background: #fff;
  outline: none;
  cursor: pointer;
}

.filter-count {
  font-size: 13px;
  color: var(--text-light);
  margin-left: auto;
}

/* ===== PRODUCT DETAIL ===== */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.detail-img {
  border-radius: 12px;
  overflow: hidden;
  background: #f0f4f8;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  box-shadow: var(--shadow);
}

.detail-info h1 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.detail-info .cas-number {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 18px;
}

.detail-info .cat-badge {
  display: inline-block;
  background: rgba(26,82,118,0.08);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 14px;
}

.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table th {
  text-align: left;
  padding: 10px 14px;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--bg-light);
  width: 38%;
  font-size: 13px;
}
.spec-table td {
  padding: 10px 14px;
  color: var(--text-dark);
}

.doc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.doc-tag {
  background: rgba(26,82,118,0.07);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(26,82,118,0.15);
}

.detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.whatsapp-bubble {
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.whatsapp-bubble:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  color: #fff;
}

.whatsapp-icon { font-size: 22px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero h1 { font-size: 30px; }
  .category-cards { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-layout, .detail-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  nav ul { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .features-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===== INQUIRY MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-box {
  background: #fff;
  border-radius: 12px;
  padding: 36px 32px;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 22px;
  cursor: pointer;
  color: #888;
  background: none;
  border: none;
  transition: color 0.2s;
}

.modal-close:hover { color: #333; }

.modal-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.modal-box > p {
  color: var(--text-mid);
  font-size: 14px;
  margin-bottom: 24px;
}

.inquiry-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.inquiry-form .form-group {
  margin-bottom: 14px;
}

.inquiry-form .form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.inquiry-form .form-group input,
.inquiry-form .form-group select,
.inquiry-form .form-group textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font);
  color: var(--text-dark);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.inquiry-form .form-group input:focus,
.inquiry-form .form-group select:focus,
.inquiry-form .form-group textarea:focus {
  border-color: var(--primary-light);
}

.inquiry-form .form-group textarea {
  min-height: 80px;
  resize: vertical;
}

.inquiry-form .btn-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  padding: 12px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}

.inquiry-form .btn-submit:hover { background: var(--accent-hover); }
