/* Reset */
* { box-sizing: border-box; margin:0; padding:0; }
html,body { height:100%; }
body { font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; color:#1f2937; background:#f6f7f9; line-height:1.5; }

/* Helpers */
.container { max-width:1200px; margin:0 auto; padding:0 20px; }

/* Buttons */
.btn { display:inline-block; padding:10px 16px; border-radius:8px; text-decoration:none; font-weight:600; }
.btn.primary { background: linear-gradient(135deg,#0f6f6b,#2aa58a); color:white; box-shadow:0 6px 18px rgba(15,111,107,0.18); }
.btn.secondary { background:white; color:#0f6f6b; border:1px solid rgba(15,111,107,0.08); }

/* Logo header */
.logo-header { background: #fff; border-bottom:1px solid rgba(0,0,0,0.04); }
.logo-header .container { display:flex; align-items:center; justify-content:space-between; padding:14px 20px; }
.logo-img { height:44px; }
.logo-actions .btn { margin-left:10px; }

/* NAV */
.navbar { background: linear-gradient(90deg,#0f6f6b,#0b7a86); color:#fff; position:relative; }
.nav-inner { display:flex; align-items:center; justify-content:space-between; padding:10px 20px; max-width:1200px; margin:0 auto; }
.brand-small { color:white; font-weight:700; text-decoration:none; display:none; }

/* Nav links */
.nav-links { display:flex; gap:4px; list-style:none; align-items:center; }
.nav-links li { position:relative; }
.nav-links a { color:white; padding:12px 14px; display:block; text-decoration:none; font-weight:600; }
.nav-links a:hover { background: rgba(255,255,255,0.06); border-radius:6px; }

/* Dropdown */
.dropdown-menu { display:none; position:absolute; left:0; top:100%; min-width:220px; background: linear-gradient(180deg,#057076,#025b5a); border-radius:8px; padding:8px; box-shadow:0 12px 30px rgba(3, 27, 24, 0.18); }
.dropdown-menu li a { padding:10px 12px; color:#fff; display:block; border-radius:6px; }
.dropdown:hover .dropdown-menu { display:block; }

/* Mobile hamburger */
.hamburger { display:none; width:40px; height:38px; align-items:center; justify-content:center; border:none; background:transparent; cursor:pointer; }
.hamburger span { display:block; width:22px; height:2.8px; background:#fff; margin:4px 0; border-radius:4px; transition:all .35s ease; }
.hamburger.open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; transform:scale(.2); }
.hamburger.open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* Hero */
.haeshi-hero { position:relative; overflow:hidden; padding:80px 0 60px; background:linear-gradient(180deg,#e6fbf8,#eef6fb); }
.hero-overlay{position:absolute; inset:0; pointer-events:none; background:linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.00));}
.hero-inner { display:flex; gap:30px; align-items:center; justify-content:space-between; padding:30px 0; }
.hero-content { flex:1; max-width:640px; z-index:2; }
.hero-content h1 { font-size:2.6rem; color:#053332; margin-bottom:12px; line-height:1.06; }
.lede { color:#0b4b48; margin-bottom:18px; }

/* hero shapes */
.hero-shapes .shape { position:absolute; border-radius:999px; opacity:0.14; transform:translateZ(0); }
.hero-shapes .circle { width:220px; height:220px; left:-40px; top:40px; background:#2aa58a; }
.hero-shapes .blob { width:340px; height:220px; right:-80px; top:80px; background:#0f6f6b; border-radius:40% 60% 60% 40%; }
.hero-shapes .slant { width:200px; height:200px; bottom:-40px; left:40px; background:#f59e0b; opacity:.10; transform:rotate(24deg); }

/* hero media */
.hero-media { flex:0 0 420px; display:flex; justify-content:center; }
.hero-media img { max-width:420px; width:100%; transform:translateY(0); transition:transform .45s ease; }

/* cards */
.cards { display:flex; gap:20px; margin-top:20px; flex-wrap:wrap; }
.card { background:#fff; border-radius:12px; padding:18px; width:100%; max-width:360px; box-shadow:0 8px 30px rgba(13,66,65,0.06); }
.card img { width:100%; height:150px; object-fit:cover; border-radius:8px; margin-bottom:12px; }
.card h3 { margin-bottom:8px; }

/* sections */
.section { padding:60px 0; background:transparent; }
.section h2 { font-size:1.8rem; margin-bottom:10px; color:#053332; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:18px; }
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:18px; }

/* quote form */
.quote-form { background:#fff; padding:20px; border-radius:12px; max-width:880px; margin:22px auto 0; box-shadow:0 10px 30px rgba(12,40,39,0.05); }
.quote-form .row { display:flex; gap:12px; margin-bottom:12px; }
.quote-form input, .quote-form textarea { padding:12px 14px; border-radius:8px; border:1px solid rgba(16,52,52,0.06); width:100%; }
.form-row { display:flex; gap:12px; margin-top:12px; justify-content:flex-end; }

/* footer */
.site-footer { background:#062b2a; color:#dff6f3; padding:28px 0 8px; margin-top:28px; }
.footer-grid { display:grid; grid-template-columns:1fr 1fr 1fr; gap:18px; align-items:start; padding:20px 0; }
.footer-links { list-style:none; margin-top:8px; }
.footer-links li { margin-bottom:6px; }
.footer-links a { color:#dff6f3; text-decoration:none; opacity:0.92; }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.04); padding:12px 0; text-align:center; font-size:0.95rem; color:rgba(255,255,255,0.85); }

/* responsive */
@media (max-width: 992px) {
  .brand-small { display:block; color:#fff; font-weight:700; text-decoration:none; }
  .nav-links { display:none; position:absolute; top:62px; left:0; right:0; background:linear-gradient(180deg,#0b7a86,#066b66); flex-direction:column; padding:12px 18px; gap:6px; z-index:999; }
  .nav-links.active { display:flex; }
  .nav-links li a { padding:12px 10px; border-radius:6px; }
  .hamburger { display:flex; }
  .dropdown-menu { position:relative; margin-top:6px; display:none; box-shadow:none; background:transparent; }
  .dropdown .dropdown-menu { padding-left:12px; display:none; }
  .dropdown.open .dropdown-menu { display:block; }
  .hero-inner { flex-direction:column-reverse; gap:18px; }
  .hero-media { width:100%; display:flex; justify-content:center; }
  .grid-3 { grid-template-columns:1fr; }
  .grid-2 { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
}


/* added */
/* ===== Article Single Page ===== */
.article-single {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.article-single article {
  flex: 1 1 65%;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.article-single .featured-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.article-single .article-meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 20px;
}

.article-single .article-body {
  line-height: 1.8;
  font-size: 1rem;
  color: #333;
}

.article-single .article-body h2 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #005b7f; /* consistent brand color */
}

.article-single .article-body p {
  margin-bottom: 20px;
}

/* Sidebar */
.article-sidebar {
  flex: 1 1 30%;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.article-sidebar h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #005b7f;
}

.article-sidebar ul {
  list-style: none;
}

.article-sidebar ul li {
  margin-bottom: 10px;
}

.article-sidebar ul li a {
  color: #007fa3;
  text-decoration: none;
  transition: color 0.3s;
}

.article-sidebar ul li a:hover {
  color: #f4a261;
}

/* CTA newsletter */
.cta {
  background: #005b7f;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  margin-top: 60px;
  border-radius: 10px;
}

.cta h2 {
  margin-bottom: 10px;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  flex: 1 1 250px;
}

.newsletter-form button {
  padding: 12px 20px;
  background: #f4a261;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: #e76f51;
}

/* Responsive */
@media (max-width: 992px) {
  .article-single {
    flex-direction: column;
  }

  .article-sidebar {
    order: -1; /* sidebar on top for mobile */
  }
}


.contact-section h2 { color:#053332; margin-bottom:10px; }
.contact-section p { color:#0b4b48; max-width:680px; margin:auto; }
.contact-section form input, .contact-section form textarea {
  background:#f9fdfd;
  border:1px solid rgba(15,111,107,0.1);
}
.contact-section form input:focus, .contact-section form textarea:focus {
  border-color:#0f6f6b;
  box-shadow:0 0 0 3px rgba(15,111,107,0.08);
  outline:none;
}



/* Quote Page Enhancements */
.quote-form select {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(16,52,52,0.06);
  width: 100%;
  background-color: #f9fdfd;
  color: #053332;
}

.quote-form select:focus {
  border-color: #0f6f6b;
  box-shadow: 0 0 0 3px rgba(15,111,107,0.08);
  outline: none;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form button[type="submit"] {
  width: 100%;
  font-size: 1rem;
  padding: 14px;
}

@media (max-width: 768px) {
  .quote-form .row { flex-direction: column; }
}
