:root {
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --secondary: #2563eb;
  --accent: #10b981;
  --accent-dark: #059669;
  --bg-color: #f8fafc;
  --text-main: #0f172a;
  --text-muted: #475569;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--secondary);
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.highlight {
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  font-size: 1rem;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:focus-visible,
.nav-links a:focus-visible,
.mobile-menu a:focus-visible,
.hamburger:focus-visible,
.close-menu:focus-visible,
.floating-wa:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 4px;
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e, var(--accent-dark));
  color: var(--white);
  box-shadow: 0 10px 20px -10px rgba(16, 185, 129, 0.7);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-dark), #065f46);
  box-shadow: 0 15px 25px -10px rgba(16, 185, 129, 0.9);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: 0 10px 20px -10px rgba(37, 99, 235, 0.7);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--primary-dark), #1d4ed8);
  box-shadow: 0 15px 25px -10px rgba(37, 99, 235, 0.9);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: padding 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo i {
  color: var(--primary);
}

.logo-img {
  height: 66px;
  width: auto;
  object-fit: contain;
}

.footer-logo-img {
  height: 88px;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 600;
  color: var(--text-main);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-main);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
  right: 0;
}

.close-menu {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-main);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.6) 100%);
  z-index: -1;
}

.hero-content {
  color: var(--white);
}

.hero-text-box {
  max-width: 650px;
  animation: slideUp 1s ease forwards;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--primary);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #cbd5e1;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Services */
.services {
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-color);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-main);
}

.service-card p {
  color: var(--text-muted);
}

/* Why Us */
.why-us {
  background: var(--bg-color);
}

.why-us-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.why-us-text {
  flex: 1;
}

.why-us-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.why-us-text p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.features-list i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 3px;
}

.why-us-image {
  flex: 1;
  position: relative;
}

.why-us-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--secondary);
  color: var(--white);
  padding: 25px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.experience-badge .number {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
}

/* Gallery */
.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  height: 300px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Contact */
.contact {
  background: var(--bg-color);
}

.contact-wrapper {
  display: flex;
  gap: 50px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-info {
  flex: 1;
  padding: 50px;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.icon-box {
  width: 50px;
  height: 50px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

.info-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.info-text p, .info-text a {
  color: var(--text-muted);
  font-weight: 500;
}

.info-text a:hover {
  color: var(--primary);
}

.contact-map {
  flex: 1;
  background: #e2e8f0;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-muted);
  font-size: 2rem;
}

.map-placeholder p {
  font-size: 1rem;
  margin-top: 10px;
}

/* Footer */
footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-logo i {
  color: var(--primary);
}

.footer-links h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Floating WhatsApp */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: transform 0.3s ease;
  animation: pulse 2s infinite;
}

.floating-wa:hover {
  transform: scale(1.1);
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .why-us-content, .contact-wrapper {
    flex-direction: column;
  }
  
  .experience-badge {
    bottom: 20px;
    left: 20px;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }
  
  .hamburger {
    display: inline-flex;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .contact-info {
    padding: 30px;
  }
}

/* SEO content sections */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.14);
  color: #e0f2fe;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  color: #e2e8f0;
  font-weight: 600;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.service-tag {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.areas {
  background: var(--white);
}

.areas-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 38px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(37, 99, 235, 0.08));
  box-shadow: var(--shadow-sm);
}

.areas-card p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 26px;
  text-align: center;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.area-tags span {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--text-main);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.faq {
  background: var(--bg-color);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.faq details {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.faq summary {
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--text-main);
}

.faq details p {
  margin-top: 14px;
  color: var(--text-muted);
}

.cta-strip {
  padding: 48px 0;
  background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
  color: var(--white);
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.cta-content p {
  color: #dbeafe;
}

@media (max-width: 768px) {
  .hero-trust {
    gap: 10px;
  }

  .areas-card {
    padding: 26px 18px;
  }

  .cta-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Alignment refinements */
.services-grid {
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card p {
  flex: 1;
}

.features-list {
  display: grid;
  gap: 16px;
}

.features-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 14px;
  margin-bottom: 0;
  line-height: 1.55;
}

.features-list i {
  width: 24px;
  text-align: center;
  margin-top: 4px;
}

.contact-info {
  min-width: 0;
}

.contact-item {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.contact-item .icon-box {
  flex: 0 0 50px;
  margin-top: 2px;
}

.info-text p {
  overflow-wrap: anywhere;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-bottom a {
  color: var(--primary);
  font-weight: 800;
}

.footer-bottom a:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .contact-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .contact-item .icon-box {
    width: 44px;
    height: 44px;
  }
}


/* Final alignment and UI refinements */
.nav-container { min-height: 88px; }
.logo-img { max-width: 210px; }
.footer-logo { max-width: 420px; }
.footer-logo p { line-height: 1.75; color: #cbd5e1; }
.footer-logo-img { max-width: 240px; }
.features-list { list-style: none; padding-left: 0; margin-left: 0; }
.features-list li { grid-template-columns: 26px minmax(0, 1fr); align-items: start; text-align: left; }
.features-list i { display: inline-flex; justify-content: center; align-items: center; width: 26px; min-width: 26px; margin-top: 4px; }
.faq-grid { align-items: start; }
.faq details { height: auto; align-self: start; }
.faq details:not([open]) { min-height: 74px; }
.faq details[open] { grid-row: span 2; }
.faq summary { list-style-position: outside; padding-right: 10px; }
.service-card { min-height: 300px; }
.service-tag { margin-top: 18px; }
@media (max-width: 768px) {
  .logo-img { height: 56px; max-width: 180px; }
  .footer-logo-img { height: 74px; }
  .nav-container { min-height: 78px; }
  .service-card { min-height: auto; }
  .faq details[open] { grid-row: auto; }
}


/* FAQ independent opening layout and final logo sizing */
.nav-container { height: 96px; min-height: 96px; }
.logo-img { height: 72px; max-width: 230px; }
.footer-logo-img { height: 96px; max-width: 260px; }
.features-list li span { display: block; }
.faq-grid { display: flex; flex-direction: column; align-items: stretch; max-width: 920px; margin: 0 auto; }
.faq details { width: 100%; align-self: stretch; }
.faq details[open] { grid-row: auto !important; }
.faq details:not([open]) { min-height: auto; }
@media (max-width: 768px) {
  .nav-container { height: 82px; min-height: 82px; }
  .logo-img { height: 58px; max-width: 190px; }
  .footer-logo-img { height: 78px; max-width: 220px; }
}


/* FAQ visual refinement - only Sık Sorulan Sorular section */
.faq .section-title {
  margin-bottom: 34px;
}

.faq-grid {
  gap: 14px;
}

.faq details {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.faq details:hover {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.11);
  transform: translateY(-1px);
}

.faq details[open] {
  border-color: rgba(37, 99, 235, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.faq summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 19px 68px 19px 22px;
  list-style: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
  color: var(--text-main);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::before {
  content: "?";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.10);
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 900;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.10);
  color: var(--primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.faq details[open] summary::after {
  content: "−";
  background: var(--primary);
  color: var(--white);
}

.faq details p {
  margin: 0;
  padding: 0 68px 22px 70px;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.75;
}

.faq summary:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.25);
  outline-offset: -3px;
  border-radius: 18px;
}

@media (max-width: 768px) {
  .faq-grid {
    gap: 12px;
  }

  .faq summary {
    min-height: 62px;
    padding: 16px 56px 16px 16px;
    gap: 10px;
    font-size: 14.5px;
  }

  .faq summary::before {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .faq summary::after {
    right: 16px;
    width: 30px;
    height: 30px;
    font-size: 21px;
  }

  .faq details p {
    padding: 0 18px 18px 56px;
    font-size: 14.5px;
  }
}


/* Full SEO page structure */
.has-dropdown{position:relative}.has-dropdown>a{display:flex;align-items:center;gap:6px}.dropdown-menu{position:absolute;top:calc(100% + 18px);left:0;background:#fff;min-width:270px;border-radius:16px;box-shadow:0 20px 40px rgba(15,23,42,.14);padding:12px;opacity:0;visibility:hidden;transform:translateY(10px);transition:.22s ease;z-index:1002;max-height:70vh;overflow:auto}.has-dropdown:hover .dropdown-menu{opacity:1;visibility:visible;transform:translateY(0)}.dropdown-menu li a{display:block;padding:10px 12px;border-radius:10px;color:var(--text-main);font-size:.94rem}.dropdown-menu li a:hover{background:#eff6ff;color:var(--secondary)}.dropdown-menu a:after{display:none}.page-hero{min-height:520px}.services-grid{align-items:stretch}.service-card{display:flex;flex-direction:column}.service-card .text-link{margin-top:auto;color:var(--secondary);font-weight:700}.region-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:18px}.region-card{background:#fff;border:1px solid #e2e8f0;border-radius:18px;padding:20px;box-shadow:var(--shadow-sm);display:flex;flex-direction:column;gap:6px}.region-card i{color:var(--primary);font-size:1.3rem}.region-card span{font-weight:800;color:var(--secondary)}.region-card small{color:var(--text-muted)}.light{background:#eef6ff}.two-col{display:grid;grid-template-columns:1.1fr .9fr;gap:44px;align-items:center}.two-col img{width:100%;border-radius:24px;box-shadow:var(--shadow-lg)}.content-page{max-width:980px}.content-page h2{font-size:2rem;color:var(--secondary);margin:28px 0 14px}.content-page p{font-size:1.08rem;color:var(--text-muted);margin-bottom:16px}.feature-list{display:grid;gap:14px;margin:18px 0 28px}.feature-list div{display:flex;align-items:center;gap:12px;background:#fff;border:1px solid #e2e8f0;border-radius:14px;padding:14px 16px}.feature-list i{width:28px;height:28px;border-radius:50%;background:#e0f2fe;color:var(--secondary);display:inline-flex;align-items:center;justify-content:center;font-size:.8rem;flex:0 0 28px}.inline-links{display:flex;flex-wrap:wrap;gap:10px;margin-top:15px}.inline-links a{background:#eff6ff;color:var(--secondary);padding:10px 14px;border-radius:999px;font-weight:700}.cta-strip{background:linear-gradient(135deg,var(--secondary),#0f172a);color:#fff;padding:48px 0}.cta-inner{display:flex;align-items:center;justify-content:space-between;gap:24px}.cta-inner h2{font-size:2rem}.cta-inner p{opacity:.88}.footer{background:#0f172a;color:#cbd5e1;padding-top:56px}.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:32px}.footer h3{color:#fff;margin-bottom:14px}.footer li{margin-bottom:8px}.footer a:hover{color:#38bdf8}.footer-logo-img{height:74px;width:auto;object-fit:contain;filter:none}.footer-bottom{text-align:center;border-top:1px solid rgba(255,255,255,.12);margin-top:30px;padding:18px;color:#cbd5e1}.contact-page{display:grid;grid-template-columns:.9fr 1.1fr;gap:28px}.contact-card{background:#fff;border-radius:22px;padding:28px;box-shadow:var(--shadow-md)}.contact-card p{display:flex;align-items:flex-start;gap:12px;margin:18px 0}.contact-card i{color:var(--primary);width:22px}.map-box iframe{width:100%;border-radius:22px;box-shadow:var(--shadow-md)}.floating-wa{position:fixed;right:22px;bottom:22px;width:58px;height:58px;border-radius:50%;background:#22c55e;color:#fff;display:flex;align-items:center;justify-content:center;font-size:1.8rem;box-shadow:0 12px 30px rgba(34,197,94,.35);z-index:1000}.logo-img{height:58px}.nav-container{height:82px}@media(max-width:992px){.nav-links,.nav-actions{display:none}.hamburger{display:flex}.two-col,.contact-page,.footer-grid{grid-template-columns:1fr}.cta-inner{flex-direction:column;align-items:flex-start}.page-hero{min-height:560px}.mobile-menu li a{font-size:1rem}}@media(min-width:993px){.hamburger{display:none}}


/* Detail page hero refinements */
.page-hero{min-height:360px;padding:90px 0 70px;}
.page-hero .hero-content{min-height:auto;}
.page-hero .hero-text-box{max-width:880px;}
.page-hero h1{font-size:clamp(2.2rem,4vw,3.6rem);line-height:1.12;margin-bottom:16px;}
.page-hero p{font-size:1.05rem;max-width:780px;margin-bottom:0;}
.page-hero .hero-buttons{display:none!important;}
.page-hero .eyebrow{font-size:.82rem;margin-bottom:10px;}
.footer-logo-img{height:76px;width:auto;object-fit:contain;}
@media(max-width:768px){.page-hero{min-height:300px;padding:70px 0 52px}.page-hero h1{font-size:2.05rem}.page-hero p{font-size:.98rem}.footer-logo-img{height:62px}}


/* Unified footer across all pages */
.footer {
  background: linear-gradient(135deg, #07162b 0%, #0f172a 100%);
  color: #cbd5e1;
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .85fr 1fr 1.15fr;
  gap: 34px;
  align-items: start;
}
.footer-logo {
  display: inline-flex;
  margin-bottom: 28px;
}
.footer-logo-img {
  height: 78px;
  max-width: 250px;
  width: auto;
  object-fit: contain;
  filter: none;
}
.footer p {
  line-height: 1.75;
  color: #cbd5e1;
  margin: 0;
}
.footer h3 {
  color: #ffffff;
  font-size: 1.05rem;
  margin: 0 0 16px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer li {
  margin-bottom: 10px;
  line-height: 1.55;
}
.footer a {
  color: #cbd5e1;
  transition: color .2s ease;
}
.footer a:hover {
  color: #38bdf8;
}
.footer .fa-solid,
.footer .fa-brands {
  color: #38bdf8;
  margin-right: 8px;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 34px;
  padding: 18px 20px;
  color: #cbd5e1;
}
.footer-bottom a {
  color: #ffffff;
  font-weight: 800;
}
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer { padding-top: 42px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-logo-img { height: 64px; max-width: 220px; }
  .footer-bottom { text-align: left; }
}


/* Footer logo spacing update */
.footer .footer-logo {
  margin-bottom: 28px !important;
}
.footer .footer-logo-img {
  display: block;
}
.footer .footer-logo + p {
  margin-top: 0;
}


/* Final unified footer layout */
.footer {
  background: #0f172a;
  color: #dbeafe;
  padding: 54px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.28fr .92fr 1fr 1.08fr;
  gap: 48px;
  align-items: flex-start;
}
.footer-brand {
  max-width: 360px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px !important;
}
.footer-logo-img {
  height: 72px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: none;
}
.footer-brand p,
.footer p {
  color: #ffffff;
  font-size: .98rem;
  line-height: 1.75;
  margin: 0;
}
.footer h3 {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.3;
  margin: 0 0 16px;
  font-weight: 800;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer li {
  margin-bottom: 9px;
  line-height: 1.45;
}
.footer a,
.footer li,
.footer span {
  color: #ffffff;
  font-size: .97rem;
}
.footer a:hover {
  color: #38bdf8;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.footer .fa-solid,
.footer .fa-brands {
  color: #ffffff;
  margin-right: 0;
  width: 16px;
  min-width: 16px;
  line-height: 1.45;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 36px;
  padding: 18px 20px;
  color: #cbd5e1;
}
.footer-bottom p,
.footer-bottom a {
  font-size: .94rem;
}
.footer-bottom a {
  color: #ffffff;
  font-weight: 800;
}
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-brand { max-width: none; }
}
@media (max-width: 640px) {
  .footer { padding-top: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-logo-img { height: 64px; max-width: 200px; }
  .footer-bottom { text-align: left; }
}


/* Subpage hero restore - clean, controlled detail page header */
.subpage-hero {
  min-height: 360px !important;
  padding: 118px 0 70px !important;
  align-items: center !important;
  overflow: hidden;
}
.subpage-hero .hero-bg {
  background-position: center center;
}
.subpage-hero .hero-overlay {
  background: linear-gradient(90deg, rgba(15, 23, 42, .92) 0%, rgba(15, 23, 42, .78) 48%, rgba(15, 23, 42, .55) 100%);
}
.subpage-hero .hero-content {
  min-height: auto !important;
  color: #fff;
  display: block;
}
.subpage-hero .hero-text-box {
  max-width: 900px !important;
  animation: none;
}
.subpage-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .78);
  font-size: .95rem;
  font-weight: 600;
}
.subpage-hero .breadcrumb a {
  color: #fff;
  font-weight: 800;
}
.subpage-hero .breadcrumb a:hover {
  color: #38bdf8;
}
.subpage-hero h1 {
  font-size: clamp(2.35rem, 4.8vw, 4.2rem) !important;
  line-height: 1.06 !important;
  margin: 0 0 18px !important;
  letter-spacing: -0.035em;
  color: #fff;
}
.subpage-hero p {
  max-width: 820px !important;
  margin: 0 !important;
  color: #dbeafe !important;
  font-size: 1.08rem !important;
  line-height: 1.75;
}
.subpage-hero .eyebrow,
.subpage-hero .hero-buttons {
  display: none !important;
}
@media (max-width: 768px) {
  .subpage-hero {
    min-height: 310px !important;
    padding: 102px 0 52px !important;
  }
  .subpage-hero h1 {
    font-size: 2.25rem !important;
  }
  .subpage-hero p {
    font-size: .98rem !important;
  }
  .subpage-hero .breadcrumb {
    font-size: .86rem;
    flex-wrap: wrap;
  }
}

/* Final subpage hero spacing fix: keep old background, balance top/bottom inner spacing */
.subpage-hero {
  min-height: 360px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden;
}
.subpage-hero .hero-content {
  width: 100%;
  min-height: auto !important;
  padding-top: 78px !important;
  padding-bottom: 78px !important;
}
.subpage-hero .hero-bg {
  background-size: cover !important;
  background-position: center center !important;
}
.subpage-hero .hero-overlay {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.6) 100%) !important;
}
.subpage-hero .breadcrumb {
  margin-bottom: 14px !important;
}
.subpage-hero h1 {
  margin-bottom: 18px !important;
}
.subpage-hero p {
  margin-bottom: 0 !important;
}
@media (max-width: 768px) {
  .subpage-hero {
    min-height: 320px !important;
  }
  .subpage-hero .hero-content {
    padding-top: 62px !important;
    padding-bottom: 62px !important;
  }
}

/* Subpage hero final offset fix: prevent breadcrumb from touching fixed header */
.subpage-hero {
  margin-top: 82px !important;
  min-height: 340px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
}
.subpage-hero .hero-content {
  width: 100%;
  padding-top: 58px !important;
  padding-bottom: 70px !important;
}
.subpage-hero .breadcrumb {
  margin-top: 0 !important;
  margin-bottom: 16px !important;
}
@media (max-width: 768px) {
  .subpage-hero {
    margin-top: 82px !important;
    min-height: 300px !important;
  }
  .subpage-hero .hero-content {
    padding-top: 44px !important;
    padding-bottom: 54px !important;
  }
}

/* SEO final layout refinements */
.footer-brand .footer-logo{display:inline-flex;margin-bottom:18px;}
.footer-logo-img{height:76px;width:auto;object-fit:contain;}
.footer-grid{align-items:flex-start;}
.region-grid,.services-grid{align-items:stretch;}
.service-card,.region-card{transition:transform .2s ease, box-shadow .2s ease;}
.service-card:hover,.region-card:hover{transform:translateY(-3px);}
.subpage-hero .hero-content{padding-top:92px;padding-bottom:76px;}
.subpage-hero .breadcrumb{margin-bottom:22px;}
.dropdown-menu{min-width:290px;}
@media(max-width:768px){.subpage-hero .hero-content{padding-top:86px;padding-bottom:64px}.footer-logo-img{height:64px}.dropdown-menu{max-height:none}}
