* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.cmb-modern-site { margin: 0; padding: 0; font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif; background:#fff; color:#4b5c7a; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

:root {
  --cmb-navy: #0A1E3D;
  --cmb-navy-mid: #112850;
  --cmb-navy-light: #163260;
  --cmb-blue: #4A9EDA;
  --cmb-blue-soft: #E8F4FF;
  --cmb-text: #4b5c7a;
  --cmb-sub: #6b7fa0;
  --cmb-line: #e2e9f2;
  --cmb-soft: #F7F9FC;
  --cmb-footer: #060F1E;
}

.cmb-shell { max-width: 1280px; margin: 0 auto; }
.cmb-site-wrap { overflow-x: hidden; }

/* NAV */
.nav {
  background: var(--cmb-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 20px rgba(10,30,61,0.12);
}
.nav-logo,
.nav-logo a {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}
.nav-logo span,
.nav-logo a span { color: var(--cmb-blue); }
.nav-logo .custom-logo-link img { max-height: 42px; width: auto; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links .current-menu-item > a { color: #fff; }
.nav-cta {
  background: var(--cmb-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.4px;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--cmb-navy) 0%, var(--cmb-navy-mid) 60%, var(--cmb-navy-light) 100%);
  min-height: 520px;
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}
.hero-bg-circles {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(74,158,218,0.18); }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-image-block {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 280px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(74,158,218,0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-image-inner {
  width: 90%;
  height: 80%;
  background: linear-gradient(160deg, rgba(74,158,218,0.15) 0%, rgba(10,30,61,0.5) 100%);
  border-radius: 10px;
  border: 1px solid rgba(74,158,218,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.hero-real-image { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder-icon {
  width: 52px;
  height: 52px;
  background: rgba(74,158,218,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cmb-blue);
}
.img-placeholder-icon svg { width: 28px; height: 28px; opacity: .7; }
.img-placeholder-text { color: rgba(255,255,255,0.4); font-size: 12px; }
.hero-content {
  max-width: 540px;
  z-index: 2;
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}
.hero-tag {
  display: inline-block;
  background: rgba(74,158,218,0.18);
  color: var(--cmb-blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
  border: 1px solid rgba(74,158,218,0.3);
}
.hero-title { color: #fff; font-size: 38px; font-weight: 700; line-height: 1.22; margin-bottom: 16px; }
.hero-title span { color: var(--cmb-blue); }
.hero-desc {
  color: rgba(255,255,255,0.66);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 420px;
}
.hero-btns { display: flex; gap: 14px; }
.btn-primary,
.btn-secondary {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  cursor:pointer;
}
.btn-primary {
  background: var(--cmb-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 5px;
  border: none;
}
.btn-secondary {
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 5px;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  padding: 0;
  cursor: pointer;
}
.dot.active { background: var(--cmb-blue); width: 24px; border-radius: 4px; }

/* STATS */
.stats-bar {
  background: #fff;
  border-bottom: 1px solid #e8edf4;
  display: flex;
  justify-content: center;
  gap: 0;
  box-shadow: 0 2px 16px rgba(10,30,61,0.06);
}
.stat-item {
  flex: 1;
  max-width: 220px;
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid #e8edf4;
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 28px; font-weight: 700; color: var(--cmb-navy); margin-bottom: 4px; }
.stat-num span { color: var(--cmb-blue); }
.stat-label { font-size: 12px; color: #8899b0; font-weight: 500; letter-spacing: 0.3px; }

/* Sections */
.section { padding: 72px 40px; }
.section.gray { background: var(--cmb-soft); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-eyebrow {
  display: inline-block;
  color: var(--cmb-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.section-title { font-size: 30px; font-weight: 700; color: var(--cmb-navy); margin-bottom: 12px; }
.section-title-left { text-align:left; margin-bottom:14px; }
.section-sub { font-size: 15px; color: var(--cmb-sub); max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* services */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  background: #fff;
  border: 1px solid var(--cmb-line);
  border-radius: 12px;
  padding: 30px 24px;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.service-card:hover { border-color: var(--cmb-blue); box-shadow: 0 8px 32px rgba(74,158,218,0.1); transform: translateY(-4px); }
.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #E8F4FF 0%, #D0EBFF 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--cmb-blue);
}
.service-icon svg { width: 26px; height: 26px; }
.service-title { font-size: 15px; font-weight: 700; color: var(--cmb-navy); margin-bottom: 10px; }
.service-text { font-size: 13px; color: var(--cmb-sub); line-height: 1.7; }

/* about */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-block {
  height: 360px;
  background: linear-gradient(145deg, var(--cmb-navy) 0%, var(--cmb-navy-light) 100%);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.about-img-accent {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(74,158,218,0.12);
}
.about-img-accent2 {
  position: absolute;
  bottom: -40px;
  left: -20px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(74,158,218,0.08);
}
.about-img-icon {
  width: 64px;
  height: 64px;
  background: rgba(74,158,218,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: var(--cmb-blue);
}
.about-img-icon svg { width: 34px; height: 34px; }
.about-img-label { color: rgba(255,255,255,0.5); font-size: 13px; z-index: 2; }
.about-main-text { font-size:14px; color:var(--cmb-sub); line-height:1.8; margin-bottom:6px; }
.about-list { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.about-item { display: flex; gap: 14px; align-items: flex-start; }
.about-check {
  width: 22px;
  height: 22px;
  background: var(--cmb-blue-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--cmb-blue);
}
.about-check svg { width: 12px; height: 12px; }
.about-item-text { font-size: 14px; color: var(--cmb-text); line-height: 1.6; }
.about-item-title { font-size: 14px; font-weight: 600; color: var(--cmb-navy); margin-bottom: 3px; }

/* portfolio */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.port-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--cmb-line);
  background: #fff;
  transition: transform .2s, box-shadow .2s;
}
.port-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(10,30,61,0.08); }
.port-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  position: relative;
  overflow: hidden;
  color: var(--cmb-blue);
}
.port-img svg { width: 32px; height: 32px; opacity: 0.6; }
.port-real-image { width:100%; height:100%; object-fit:cover; }
.port-body { padding: 18px 20px; }
.port-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 30px;
  margin-bottom: 10px;
  background: var(--cmb-blue-soft);
  color: var(--cmb-blue);
}
.port-title { font-size: 15px; font-weight: 700; color: var(--cmb-navy); margin-bottom: 6px; }
.port-text { font-size: 12px; color: #8899b0; line-height: 1.6; }

/* blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card { background: #fff; border: 1px solid var(--cmb-line); border-radius: 12px; overflow: hidden; }
.blog-img {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  color: var(--cmb-blue);
  position: relative;
  overflow: hidden;
}
.blog-img svg { width: 28px; height: 28px; opacity: 0.55; }
.blog-real-image { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 20px; }
.blog-date { font-size: 11px; color: var(--cmb-blue); font-weight: 600; margin-bottom: 8px; letter-spacing: 0.4px; }
.blog-title { font-size: 15px; font-weight: 700; color: var(--cmb-navy); margin-bottom: 8px; line-height: 1.4; }
.blog-text { font-size: 12px; color: #8899b0; line-height: 1.65; }

/* contact */
.contact-section {
  background: var(--cmb-navy);
  padding: 72px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-left { color: #fff; max-width: 620px; margin-left: auto; }
.contact-title { font-size: 28px; font-weight: 700; margin-bottom: 12px; color:#fff; }
.contact-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 28px; }
.contact-info-item { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.contact-info-icon {
  width: 36px;
  height: 36px;
  background: rgba(74,158,218,0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cmb-blue);
}
.contact-info-icon svg { width: 17px; height: 17px; }
.contact-info-text { font-size: 13px; color: rgba(255,255,255,0.75); }
.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-input,
.form-textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 7px;
  padding: 12px 14px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  width: 100%;
  outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-textarea { height: 110px; resize: none; margin-bottom: 14px; }
.form-submit {
  background: var(--cmb-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  width: 100%;
  letter-spacing: 0.4px;
}

/* footer */
.footer { background: var(--cmb-footer); padding: 48px 40px 24px; color: rgba(255,255,255,0.55); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo, .footer-logo a { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 12px; display:inline-block; }
.footer-logo span, .footer-logo a span { color: var(--cmb-blue); }
.footer-text { font-size: 12px; line-height: 1.8; }
.footer-col-title { font-size: 12px; font-weight: 700; color: #fff; letter-spacing: 0.8px; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  font-size: 11px;
  display: flex;
  justify-content: space-between;
}

/* wordpress adjustments */
.site-content { margin: 0; padding: 0; }
.site-main, .ast-container, .entry-content, .content-area, .site-content .ast-container { max-width: none; }
.home .entry-content > *:first-child { margin-top: 0; }
.home .entry-content { margin: 0; }
.cmb-header-logo .custom-logo-link { display:flex; align-items:center; }
.cmb-main-nav .menu-item { list-style:none; }

/* Responsive */
@media (max-width: 1180px) {
  .hero-image-block { right: 20px; width: 340px; }
  .services-grid, .portfolio-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .nav { padding: 0 20px; gap: 12px; flex-wrap: wrap; height: auto; padding-top: 16px; padding-bottom: 16px; }
  .nav-links { width: 100%; justify-content: center; flex-wrap: wrap; gap: 16px; }
  .hero { min-height: 740px; padding: 24px 20px 70px; }
  .hero-content { position: relative; left: auto; top: auto; transform: none; max-width: 100%; padding-top: 60px; }
  .hero-image-block { position: relative; top: auto; right: auto; transform: none; width: 100%; max-width: 520px; height: 260px; margin-top: 40px; }
  .hero-slide { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; }
  .hero-bg-circles { width: 100%; }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { max-width: 50%; flex: 0 0 50%; }
  .about-grid, .contact-section, .footer-grid { grid-template-columns: 1fr; }
  .contact-left { margin-left: 0; }
}
@media (max-width: 640px) {
  .section, .contact-section, .footer { padding-left: 20px; padding-right: 20px; }
  .hero-title { font-size: 30px; }
  .section-title { font-size: 24px; }
  .services-grid, .portfolio-grid, .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stat-item { max-width: 100%; flex: 0 0 100%; border-right: none; border-bottom: 1px solid #e8edf4; }
  .stat-item:last-child { border-bottom: none; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}


/* Internal pages */
.cmb-page-template, .cmb-archive-page, .cmb-single-page { background:#fff; }
.cmb-page-hero {
  background: linear-gradient(135deg, var(--cmb-navy) 0%, var(--cmb-navy-mid) 60%, var(--cmb-navy-light) 100%);
  padding: 72px 40px;
  color:#fff;
}
.cmb-page-hero-small { padding: 56px 40px; }
.cmb-page-hero h1, .cmb-page-hero h2, .cmb-page-hero h3 { color:#fff; font-size:42px; margin:12px 0 14px; }
.cmb-page-hero p { color:rgba(255,255,255,0.72); font-size:15px; line-height:1.8; max-width:760px; }
.cmb-badge { display:inline-block; background: rgba(74,158,218,0.18); color: var(--cmb-blue); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; padding: 5px 14px; border-radius: 30px; border:1px solid rgba(74,158,218,0.25); }
.cmb-section { padding:72px 40px; }
.cmb-section-soft { background:var(--cmb-soft); }
.cmb-grid { display:grid; gap:20px; }
.cmb-grid-services { grid-template-columns:repeat(4,1fr); }
.cmb-grid-projects { grid-template-columns:repeat(3,1fr); }
.cmb-detail-stack { display:flex; flex-direction:column; gap:24px; }
.cmb-detail-card { display:grid; grid-template-columns: 380px 1fr; gap:28px; background:#fff; border:1px solid var(--cmb-line); border-radius:16px; overflow:hidden; }
.cmb-detail-card__media { min-height:280px; }
.cmb-detail-card__media img { width:100%; height:100%; object-fit:cover; }
.cmb-detail-card__body { padding:28px; }
.cmb-detail-card__body h2 { font-size:28px; color:var(--cmb-navy); margin-bottom:12px; }
.cmb-detail-card__body p { font-size:14px; line-height:1.8; color:var(--cmb-text); }
.cmb-check-list { margin:18px 0 0; padding-left:18px; display:flex; flex-direction:column; gap:8px; color:var(--cmb-text); }
.cmb-check-list li { line-height:1.6; }
.cmb-card-link { display:inline-flex; margin-top:18px; color:var(--cmb-blue); font-size:13px; font-weight:700; }
.cmb-card-link:hover { color:var(--cmb-navy); }
.cmb-filter-bar { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:24px; }
.cmb-filter { display:inline-flex; align-items:center; justify-content:center; min-height:40px; padding:0 16px; border:1px solid var(--cmb-line); border-radius:999px; background:#fff; color:var(--cmb-navy); font-size:13px; font-weight:600; }
.cmb-filter.is-active, .cmb-filter:hover { border-color:var(--cmb-blue); background:var(--cmb-blue-soft); color:var(--cmb-blue); }
.cmb-content-card, .cmb-sidebar-card, .cmb-contact-card { background:#fff; border:1px solid var(--cmb-line); border-radius:16px; padding:28px; }
.cmb-single-hero-grid, .cmb-about-grid { display:grid; grid-template-columns: 1.05fr .95fr; gap:32px; align-items:center; }
.cmb-about-media img, .cmb-single-hero-image img { width:100%; border-radius:18px; object-fit:cover; min-height:280px; }
.cmb-single-content-grid, .cmb-contact-grid { display:grid; grid-template-columns: 1.15fr .85fr; gap:24px; align-items:start; }
.cmb-sidebar-card h3, .cmb-contact-card h3 { color:var(--cmb-navy); font-size:22px; margin-bottom:10px; }
.cmb-sidebar-card p, .cmb-contact-card p, .cmb-content-card p { color:var(--cmb-text); line-height:1.8; }
.cmb-content-card h2, .cmb-content-card h3, .cmb-content-card h4 { color:var(--cmb-navy); margin:18px 0 10px; }
.cmb-content-card ul, .cmb-content-card ol { padding-left:18px; }
.cmb-contact-list { display:flex; flex-direction:column; gap:16px; }
.cmb-contact-list strong { display:block; color:var(--cmb-navy); margin-bottom:4px; }
.cmb-contact-list a, .cmb-contact-list span { color:var(--cmb-text); }
.cmb-button { display:inline-flex; align-items:center; justify-content:center; min-height:46px; padding:0 22px; border-radius:6px; font-size:13px; font-weight:700; }
.cmb-button-primary { background:var(--cmb-blue); color:#fff; }
.cmb-button-secondary { background:#fff; color:var(--cmb-blue); border:1px solid var(--cmb-blue); }
.cmb-card-topline { display:flex; flex-wrap:wrap; gap:8px; align-items:center; margin-bottom:12px; }
.cmb-status, .cmb-location { display:inline-flex; align-items:center; min-height:28px; padding:0 10px; border-radius:999px; font-size:11px; font-weight:700; }
.cmb-status { background:var(--cmb-blue-soft); color:var(--cmb-blue); }
.cmb-status-ongoing { background:#fff5d8; color:#a97400; }
.cmb-status-design { background:#efe9ff; color:#6c4fd3; }
.cmb-location { background:#f3f6fb; color:var(--cmb-sub); }
.cmb-empty-note { background:#fff5d8; color:#7a5b00; border:1px solid #ead28c; padding:14px 16px; border-radius:10px; margin-bottom:20px; }
.page .entry-header, .page .post-thumbnail, .page .entry-footer, .single-cmb_service .entry-header, .single-cmb_project .entry-header { display:none; }
.page .site-content .ast-container, .archive .site-content .ast-container, .single .site-content .ast-container { max-width:none; padding:0; display:block; }
.page .content-area, .archive .content-area, .single .content-area { width:100%; margin:0; }
.page .entry-content, .single .entry-content { margin:0; }
@media (max-width: 1180px) {
  .cmb-grid-services { grid-template-columns:repeat(2,1fr); }
  .cmb-grid-projects { grid-template-columns:repeat(2,1fr); }
  .cmb-detail-card, .cmb-single-content-grid, .cmb-contact-grid, .cmb-single-hero-grid, .cmb-about-grid { grid-template-columns:1fr; }
}
@media (max-width: 640px) {
  .cmb-page-hero, .cmb-section { padding-left:20px; padding-right:20px; }
  .cmb-page-hero h1 { font-size:30px; }
  .cmb-grid-services, .cmb-grid-projects { grid-template-columns:1fr; }
}


/* Layout hardening fixes */
html, body, #page.site.cmb-site-wrap, .cmb-site-wrap, #content.site-content { width:100%; max-width:100% !important; }
#page.site.cmb-site-wrap { display:block !important; }
.cmb-header, .hero, .stats-bar, .cmb-page-hero, .cmb-section, .contact-section, .footer { width:100%; max-width:100%; }
.cmb-shell, .footer-grid.cmb-shell, .footer-bottom.cmb-shell { width:100%; max-width:1280px; margin-left:auto; margin-right:auto; }
.service-icon svg, .port-img svg, .img-placeholder-icon svg, .about-img-icon svg, .contact-info-icon svg { display:block; width:24px; height:24px; }


/* Contact form shortcode + WhatsApp icon */
.cmb-theme-form { display:flex; flex-direction:column; gap:12px; }
.cmb-form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.cmb-form-input, .cmb-form-textarea { width:100%; border:1px solid var(--cmb-line); border-radius:10px; padding:13px 14px; font-size:14px; color:var(--cmb-navy); background:#fff; }
.cmb-form-input:focus, .cmb-form-textarea:focus { outline:none; border-color:var(--cmb-blue); box-shadow:0 0 0 3px rgba(74,158,218,.12); }
.cmb-form-textarea { min-height:140px; resize:vertical; }
.cmb-form-submit { width:100%; }
.cmb-form-notice { margin-bottom:14px; border:1px solid #bfe3c5; background:#edf9ef; color:#226034; padding:12px 14px; border-radius:10px; font-size:14px; }
.cmb-whatsapp-icon-link { display:inline-flex; align-items:center; justify-content:center; width:48px; height:48px; border-radius:999px; background:#25D366; color:#fff; box-shadow:0 10px 24px rgba(37,211,102,.22); transition:transform .2s ease, box-shadow .2s ease; }
.cmb-whatsapp-icon-link:hover { transform:translateY(-2px); box-shadow:0 14px 28px rgba(37,211,102,.28); color:#fff; }
.cmb-whatsapp-icon-link svg { width:24px; height:24px; display:block; }
@media (max-width: 640px) { .cmb-form-row { grid-template-columns:1fr; } }


/* v2.3.0 yönetilebilir slider ve footer */
.hero-real-image{width:100%;height:100%;object-fit:cover;border-radius:10px;display:block;}
.service-card .cmb-card-link,
.port-card .cmb-card-link{display:inline-block;margin-top:14px;font-size:12px;font-weight:700;color:#4A9EDA;text-decoration:none;}
.service-card .cmb-card-link:hover,
.port-card .cmb-card-link:hover,
.blog-title a:hover{color:#0A1E3D;}
.blog-title a{color:inherit;text-decoration:none;}
.cmb-footer-legal a,.cmb-footer-menu-list a{display:block;}
.cmb-footer-legal{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end;}
.cmb-footer-legal a{font-size:11px;color:rgba(255,255,255,0.62);text-decoration:none;}
.cmb-footer-legal a:hover{color:#ffffff;}
@media (max-width: 900px){
  .cmb-footer-legal{justify-content:flex-start;margin-top:10px;}
}
