/* Variables - Brand colors */
:root {
  --dark-blue: #0B3C5D;    /* Header / Navbar */
  --steel-gray: #4A4F55;   /* Background sections */
  --white: #FFFFFF;        /* Content background */
  --orange: #F57C00;       /* Buttons / highlights */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--dark-blue);
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

html {
  scroll-behavior: smooth;
}

/* Modern Navbar - sticky */
.navbar-wrap {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  transition: box-shadow 0.3s ease;
}

.navbar-wrap.navbar-scrolled {
  box-shadow: 0 4px 20px rgba(11, 60, 93, 0.12);
}

.navbar-wrap.navbar-scrolled .top-bar {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  opacity: 0;
}

.top-bar {
  background: var(--dark-blue);
  padding: 8px 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  max-height: 60px;
  opacity: 1;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.welcome-text {
  color: var(--white);
  font-weight: 500;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
}

.top-link:hover {
  text-decoration: underline;
}

.icon-search {
  font-size: 14px;
  margin-right: 2px;
}

/* Main header */
.main-header {
  background: var(--white);
  padding: 20px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo-block {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--dark-blue);
}

.logo-img {
  height: 120px;
  width: auto;
  max-width: 560px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

/* Navigation */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  color: var(--dark-blue);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
}

.nav-list > li > a:hover {
  background: rgba(11, 60, 93, 0.08);
  color: var(--dark-blue);
}

.caret {
  font-size: 8px;
  opacity: 0.8;
}

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 100;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 16px;
  color: var(--dark-blue);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.dropdown li a:hover {
  background: rgba(11, 60, 93, 0.08);
  color: var(--dark-blue);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  transition: background 0.2s;
}

.nav-toggle:hover {
  background: rgba(11, 60, 93, 0.06);
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark-blue);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.main-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.main-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.main-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Tagline bar */
.tagline-bar {
  background: var(--dark-blue);
  padding: 12px 0;
  text-align: center;
}

.tagline-bar p {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Hero */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 60, 93, 0.75) 0%, rgba(11, 60, 93, 0.3) 50%, transparent 70%);
  z-index: 1;
}

.hero-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 60, 93, 0.6) 0%, rgba(11, 60, 93, 0.2) 100%);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 60px 24px;
}

.hero-text {
  max-width: 560px;
}

/* Hero entrance animations */
.hero-anim {
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero.hero-visible .hero-title { animation-delay: 0.15s; }
.hero.hero-visible .hero-subtitle { animation-delay: 0.28s; }
.hero.hero-visible .hero-badge { animation-delay: 0.4s; }
.hero.hero-visible .hero-tagline { animation-delay: 0.5s; }
.hero.hero-visible .cta-button.hero-anim { animation-delay: 0.65s; }

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.hero-subtitle {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  margin-bottom: 16px;
}

.hero-tagline {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-tagline strong {
  color: var(--orange);
  font-weight: 700;
}

.cta-button {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(245, 124, 0, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.cta-button:hover {
  background: #e57100;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 124, 0, 0.4);
}

/* Carousel controls */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(0, 0, 0, 0.4);
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(0, 0, 0, 0.6);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.main-content {
  min-height: 40vh;
}

/* Services grid */
.services-section {
  padding: 72px 0 80px;
  background: var(--white);
}

.services-section .section-title {
  color: var(--dark-blue);
}

.services-section .section-subtitle {
  color: #64748b;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(11, 60, 93, 0.08);
  border-radius: 12px;
  padding: 32px 28px;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(11, 60, 93, 0.1);
  transform: translateY(-4px);
  border-color: rgba(245, 124, 0, 0.3);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(245, 124, 0, 0.12);
  color: var(--orange);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 20px;
}

.service-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-section {
    padding: 48px 0 64px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
  }
  .service-card {
    padding: 24px 20px;
  }
}

/* Projects gallery */
.projects-section {
  padding: 72px 0 80px;
  background: var(--steel-gray);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.project-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
  text-decoration: none;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 60, 93, 0.9) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0.85;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
  background: rgba(11, 60, 93, 0.75);
}

.project-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

@media (max-width: 992px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .projects-section {
    padding: 48px 0 64px;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }
}

/* Footer */
.site-footer {
  background: var(--dark-blue);
  color: var(--white);
  padding: 0;
  margin-top: 0;
}

/* Footer CTA strip */
.footer-cta-strip {
  background: rgba(245, 124, 0, 0.95);
  padding: 28px 0;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-cta-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-cta-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-cta-btn {
  display: inline-block;
  background: var(--white);
  color: var(--dark-blue);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1.4fr;
  gap: 48px 40px;
  padding: 48px 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  align-items: start;
}

.footer-newsletter-col {
  min-width: 0;
  overflow: hidden;
}

.footer-contact-col {
  min-width: 0;
}

.footer-contact-col .footer-contact {
  word-break: break-word;
}

.footer-social-top {
  margin-top: 20px;
}

.footer-social-top a {
  margin-right: 0;
}

.footer-col {
  min-width: 0;
}

.footer-about .footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-about .footer-social-top {
  margin-left: 0;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 280px;
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-links,
.footer-contact {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.footer-newsletter-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
  line-height: 1.5;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 100%;
  min-width: 0;
}

.footer-newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter-form input:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.15);
}

.footer-newsletter-form button {
  padding: 12px 20px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.footer-newsletter-form button:hover {
  background: #e57100;
}

.footer-newsletter-feedback {
  font-size: 13px;
  margin-top: 10px;
  min-height: 18px;
}

.footer-newsletter-feedback.success {
  color: #86efac;
}

.footer-newsletter-feedback.error {
  color: #fca5a5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0 32px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: var(--orange);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(245, 124, 0, 0.4);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #e57100;
  color: var(--white);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-newsletter-form {
    max-width: 280px;
  }

  .footer-cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 0 24px;
  }

  .footer-about {
    grid-column: 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px 0 28px;
  }

  .footer-logo-img {
    height: 52px;
    max-width: 240px;
  }

  .footer-newsletter-form {
    flex-direction: column;
    max-width: none;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}

/* Contact section */
.contact-section {
  padding: 72px 0 80px;
  background: var(--white);
}

.contact-section .section-title {
  color: var(--dark-blue);
}

.contact-section .section-subtitle {
  color: #64748b;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 40px;
  align-items: start;
  margin-top: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  max-width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

.contact-info-map {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-block {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(11, 60, 93, 0.12);
}

.contact-info-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 16px;
}

.contact-info-item {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 16px;
}

.contact-info-item:last-of-type {
  margin-bottom: 0;
}

.contact-info-item a {
  color: var(--dark-blue);
  text-decoration: none;
}

.contact-info-item a:hover {
  color: var(--orange);
  text-decoration: underline;
}

.contact-map-link {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 18px;
  background: var(--dark-blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.contact-map-link:hover {
  background: #0a3d5c;
}

.contact-map-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(11, 60, 93, 0.15);
}

.contact-map-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form-full {
  grid-column: 1 / -1;
}

.contact-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-blue);
}

.contact-label .required {
  color: var(--orange);
}

.contact-input {
  padding: 12px 14px;
  border: 1px solid rgba(11, 60, 93, 0.2);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.15);
}

.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  padding: 14px 32px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.contact-submit:hover {
  background: #e57100;
}

.contact-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-form-feedback {
  margin-top: 12px;
  font-size: 14px;
  min-height: 20px;
}

.contact-form-feedback.success {
  color: #0d9488;
}

.contact-form-feedback.error {
  color: #dc2626;
}

@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .contact-form {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}

/* Blog section */
.blog-section {
  padding: 64px 0 80px;
  background: var(--steel-gray);
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}

.blog-card:hover {
  box-shadow: 0 12px 32px rgba(11, 60, 93, 0.2);
  transform: translateY(-4px);
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card-image-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.blog-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.blog-card:hover .blog-card-image {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 20px 24px 24px;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 14px;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 12px;
}

.blog-card-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.blog-card-more::after {
  content: "→";
  transition: transform 0.2s;
}

.blog-card:hover .blog-card-more::after {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-section {
    padding: 48px 0 64px;
  }

  .section-title {
    font-size: 26px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-card-content {
    padding: 16px 20px 20px;
  }

  .blog-card-title {
    font-size: 17px;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .main-header.nav-open .main-nav {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 16px;
  }

  .main-header.nav-open .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }

  .has-dropdown.dropdown-open .dropdown {
    max-height: 300px;
  }
}

@media (max-width: 768px) {
  .logo-img {
    height: 80px;
    max-width: 380px;
  }

  .top-bar-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hero-shape {
    width: 80%;
  }

  .carousel-prev,
  .carousel-next {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}
